Ram Watch - a null check

This commit is contained in:
adelikat 2015-01-02 14:40:18 +00:00
parent 4ae3060ae5
commit 47d1e480da
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}