From 965c2dfc0fc46573b27daf51a7ac6213b6988718 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 18 May 2014 01:06:11 +0000 Subject: [PATCH] Quicknes - Fall back to neshawk when attempting to load FDS and other things that we think NES should play --- .../Consoles/Nintendo/QuickNES/LibQuickNES.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/LibQuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/LibQuickNES.cs index 9161a2c075..b73a41009e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/LibQuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/LibQuickNES.cs @@ -242,7 +242,7 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES if (p == IntPtr.Zero) return; string s = Marshal.PtrToStringAnsi(p); - if (s == "Unsupported mapper") + if (s == "Unsupported mapper" || s == "Not an iNES file") // Not worth making a new exception for the iNES error, they ultimately are the same problem { throw new UnsupportedMapperException("Quicknes unsupported mapper"); }