Ram Watch - a null check
This commit is contained in:
parent
4ae3060ae5
commit
47d1e480da
|
@ -156,7 +156,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
public void LoadFileFromRecent(string path)
|
||||
{
|
||||
var ask_result = true;
|
||||
if (_watches.Changes)
|
||||
if (_watches != null && _watches.Changes)
|
||||
{
|
||||
ask_result = AskSaveChanges();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue