Make sure intro can't be exited unless the main menu has displayed once.

This commit is contained in:
Dean Herbert
2016-10-07 18:58:20 +09:00
parent c5228b63cb
commit 08728b84d1
8 changed files with 26 additions and 15 deletions

View File

@ -28,10 +28,10 @@ namespace osu.Game.GameModes.Multiplayer
Background.FadeColour(Color4.DarkGray, 500);
}
protected override void OnExiting(GameMode next)
protected override bool OnExiting(GameMode next)
{
base.OnExiting(next);
Background.FadeColour(Color4.White, 500);
return base.OnExiting(next);
}
}
}