Ram Watch - add a null check on Restart()
This commit is contained in:
parent
6d0a764a72
commit
fd28a593f6
|
@ -196,7 +196,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
return;
|
||||
}
|
||||
|
||||
if (!string.IsNullOrWhiteSpace(_watches.CurrentFileName))
|
||||
if (_watches != null && !string.IsNullOrWhiteSpace(_watches.CurrentFileName))
|
||||
{
|
||||
_watches.RefreshDomans(_core, _core.MemoryDomains.MainMemory);
|
||||
_watches.Reload();
|
||||
|
|
Loading…
Reference in New Issue