From 0fd5ddd0cf4cb39b86f85af8b27a3ef473fb16f9 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 31 Jul 2014 20:42:12 +0000 Subject: [PATCH] Fix crash when "NES with QuickNes" is selected, and the user attempts to load a FDS game without a proper FDS BIOS. Also, update the core statusbar label when bailing out of a failed Rom load attempt --- BizHawk.Client.Common/RomLoader.cs | 3 +-- BizHawk.Client.EmuHawk/MainForm.cs | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index 76262f4484..a61dc5eca7 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -448,8 +448,7 @@ namespace BizHawk.Client.Common // Specific hack here, as we get more cores of the same system, this isn't scalable if (ex is LibQuickNES.UnsupportedMapperException) { - LoadRom(path, nextComm, forceAccurateCore: true); - return true; + return LoadRom(path, nextComm, forceAccurateCore: true); } else { diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index d3e682730c..a0c33b1d64 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -3187,6 +3187,7 @@ namespace BizHawk.Client.EmuHawk } else { + UpdateCoreStatusBarButton(); return false; } }