From 254263c1df92ac32f00b316aedd92fa857636d97 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 24 Aug 2015 21:24:59 -0400 Subject: [PATCH] For QuickNES to bail out on Pro Action Replay (E) (REVA), since it can't do PAL --- .../Consoles/Nintendo/QuickNES/QuickNES.cs | 28 ++++++++++--------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs index d0323b9f78..fd49e2157e 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/QuickNES/QuickNES.cs @@ -250,6 +250,21 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES Console.WriteLine("Hash for BootGod: {0}", sha1); sha1 = "sha1:" + sha1; // huh? var carts = Emulation.Cores.Nintendo.NES.NES.BootGodDB.Instance.Identify(sha1); + + // Bail out on ROM's known to not be playable by this core + switch (sha1) + { + case "sha1:E39CA4477D3B96E1CE3A1C61D8055187EA5F1784": // Bill and Ted's Excellent Adventure + case "sha1:E8BC7E6BAE7032D571152F6834516535C34C68F0": // Bill and Ted's Excellent Adventure bad dump + case "sha1:401023BAE92A38B89F7D0C2E0F023E35F1FFEEFD": // Bill and Ted's Excellent Adventure bad dump + case "sha1:6270F9FF2BD0B32A23A45985D9D7FB2793E1CED3": // Bill and Ted's Excellent Adventure overdump dump + case "sha1:5E3C02A3A5F6CD4F2442311630F1C44A8E9DC7E2": // Paperboy + case "sha1:A65B6BC48E05C4CDBD221B811A17FBF174B45632": // Pro Action Replay (E) (REVA) [!] + throw new UnsupportedGameException("Game known to not be playable in this core"); + default: + break; + } + if (carts.Count > 0) { Console.WriteLine("BootGod entry found: {0}", carts[0].name); @@ -265,19 +280,6 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES break; } - // Bail out on ROM's known to not be playable by this core - switch(carts[0].sha1) - { - case "sha1:E39CA4477D3B96E1CE3A1C61D8055187EA5F1784": // Bill and Ted's Excellent Adventure - case "sha1:E8BC7E6BAE7032D571152F6834516535C34C68F0": // Bill and Ted's Excellent Adventure bad dump - case "sha1:401023BAE92A38B89F7D0C2E0F023E35F1FFEEFD": // Bill and Ted's Excellent Adventure bad dump - case "sha1:6270F9FF2BD0B32A23A45985D9D7FB2793E1CED3": // Bill and Ted's Excellent Adventure overdump dump - case "sha1:5E3C02A3A5F6CD4F2442311630F1C44A8E9DC7E2": // Paperboy - throw new UnsupportedGameException("Game known to not be playable in this core"); - default: - break; - } - BootGodStatus = RomStatus.GoodDump; BootGodName = carts[0].name; }