Fix a null emulator check, fixes dump status icon not updating after a failed rom load

This commit is contained in:
adelikat 2016-11-07 14:26:02 -06:00
parent bb1a3e3221
commit 8033a8c4fc
1 changed files with 1 additions and 1 deletions

View File

@ -1463,7 +1463,7 @@ namespace BizHawk.Client.EmuHawk
DumpStatusButton.Image = Properties.Resources.Blank;
DumpStatusButton.ToolTipText = string.Empty;
if (Global.Emulator == null)
if (Global.Emulator.IsNull())
{
return;
}