fix crashy stuff

This commit is contained in:
zeromus 2011-03-13 00:38:23 +00:00
parent 2c62271fc7
commit f493e8fe10
1 changed files with 4 additions and 1 deletions

View File

@ -1218,7 +1218,10 @@ namespace BizHawk.MultiClient
private void MainForm_Shown(object sender, EventArgs e)
{
HandlePlatformMenus(Global.Game.System);
if(Global.Game == null)
HandlePlatformMenus("");
else
HandlePlatformMenus(Global.Game.System);
}
}
}