1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-28 07:12:12 +08:00

Fix crash on opening options before intro has played.

This commit is contained in:
Dean Herbert
2017-03-06 17:18:31 +09:00
Unverified
parent e356758a7d
commit 5ec2db6558
+1 -1
View File
@@ -194,7 +194,7 @@ namespace osu.Game
private bool globalHotkeyPressed(InputState state, KeyDownEventArgs args)
{
if (args.Repeat) return false;
if (args.Repeat || intro == null) return false;
switch (args.Key)
{