From bd1a1644fd7c35243c20cb21f0035e5217c21625 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Sun, 23 Oct 2016 01:35:11 +0900 Subject: [PATCH] Fix window size saving to config incorrectly. --- osu.Game/OsuGame.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs index 7a77ef5b0a..b0a4ec94e8 100644 --- a/osu.Game/OsuGame.cs +++ b/osu.Game/OsuGame.cs @@ -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; }