1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-12 00:27:25 +08:00

Merge pull request #102 from peppy/general-fixes

Fix window size saving to config incorrectly.
This commit is contained in:
Thomas Müller 2016-10-23 14:45:51 +02:00 committed by GitHub
commit e541008d73

View File

@ -194,8 +194,8 @@ namespace osu.Game
if (Parent != null)
{
Config.Set(OsuConfig.Width, Size.X);
Config.Set(OsuConfig.Height, Size.Y);
Config.Set(OsuConfig.Width, DrawSize.X);
Config.Set(OsuConfig.Height, DrawSize.Y);
}
return true;
}