Quicknes - Fall back to neshawk when attempting to load FDS and other things that we think NES should play
This commit is contained in:
parent
558fb67984
commit
965c2dfc0f
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue