From 4732a4db198e579c1c75e6055bd2ed662d39a11d Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Sun, 18 Sep 2016 16:42:59 +0100 Subject: [PATCH] An AddProcessing() call was left behind, AddProcessing() is now gone on the framework end. --- osu.Game/OsuGame.cs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/osu.Game/OsuGame.cs b/osu.Game/OsuGame.cs index 86559493eb..e2aa45faa8 100644 --- a/osu.Game/OsuGame.cs +++ b/osu.Game/OsuGame.cs @@ -40,18 +40,18 @@ namespace osu.Game Token = Config.Get(OsuConfig.Token) }; - //var req = new ListChannelsRequest(); - //req.Success += content => - //{ - //}; - //API.Queue(req); + //var req = new ListChannelsRequest(); + //req.Success += content => + //{ + //}; + //API.Queue(req); - AddProcessing(new RatioAdjust()); - - //Add(new FontTest()); - - Add(new MainMenu()); - Add(new CursorContainer()); + Add(new Drawable[] + { + new RatioAdjust(), + new MainMenu(), + new CursorContainer() + }); } protected override void Dispose(bool isDisposing)