From 1e5474c3450675288cccd18ed02c65924acc6cb0 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 30 Nov 2014 17:58:26 +0000 Subject: [PATCH] SaveSlotManager - check HasSavestate() not IsNull() --- BizHawk.Client.Common/SaveSlotManager.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/SaveSlotManager.cs b/BizHawk.Client.Common/SaveSlotManager.cs index 21a04c3e84..c6a3f150d1 100644 --- a/BizHawk.Client.Common/SaveSlotManager.cs +++ b/BizHawk.Client.Common/SaveSlotManager.cs @@ -45,6 +45,11 @@ namespace BizHawk.Client.Common { get { + if (!Global.Emulator.HasSavestates()) + { + return false; + } + Update(); return _slots.Any(slot => slot); } @@ -52,7 +57,7 @@ namespace BizHawk.Client.Common public bool HasSlot(int slot) { - if (Global.Emulator.IsNull()) + if (!Global.Emulator.HasSavestates()) { return false; }