Quicknes - Fall back to neshawk when attempting to load FDS and other things that we think NES should play

This commit is contained in:
adelikat 2014-05-18 01:06:11 +00:00
parent 558fb67984
commit 965c2dfc0f
1 changed files with 1 additions and 1 deletions

View File

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