Fix crash on opening options before intro has played.

This commit is contained in:
Dean Herbert 2017-03-06 17:18:31 +09:00
parent e356758a7d
commit 5ec2db6558
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ protected override void LoadComplete()
private bool globalHotkeyPressed(InputState state, KeyDownEventArgs args)
{
if (args.Repeat) return false;
if (args.Repeat || intro == null) return false;
switch (args.Key)
{