1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 13:27:23 +08:00

Fix other regression.

This commit is contained in:
Dean Herbert 2017-03-07 15:18:15 +09:00
parent 577601a90f
commit 533868a608
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -62,7 +62,7 @@ namespace osu.Game.Modes.Osu.UI
protected override void LoadComplete() protected override void LoadComplete()
{ {
base.LoadComplete(); base.LoadComplete();
if (InputManager.ReplayInputHandler != null) if (InputManager?.ReplayInputHandler != null)
Add(new OsuCursorContainer { Colour = Color4.LightYellow }); Add(new OsuCursorContainer { Colour = Color4.LightYellow });
} }