Fix a null emulator check, fixes dump status icon not updating after a failed rom load
This commit is contained in:
parent
bb1a3e3221
commit
8033a8c4fc
|
@ -1463,7 +1463,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
DumpStatusButton.Image = Properties.Resources.Blank;
|
DumpStatusButton.Image = Properties.Resources.Blank;
|
||||||
DumpStatusButton.ToolTipText = string.Empty;
|
DumpStatusButton.ToolTipText = string.Empty;
|
||||||
|
|
||||||
if (Global.Emulator == null)
|
if (Global.Emulator.IsNull())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue