From fbcc7375de628db7b7a7677855f89210c186c121 Mon Sep 17 00:00:00 2001 From: goyuken Date: Mon, 15 Oct 2012 21:34:39 +0000 Subject: [PATCH] nes: add "NES-TR1ROM" to TVROM, should emulate identically (except for differences in MMC3 variant, which are handled). like "NES-TVROM", bootgod id only, as iNES is too crappy for this. should fix some version of Gauntlet (U), but can't test as I don't have the rom. --- .../Consoles/Nintendo/NES/Boards/MMC3_family/TVROM.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/MMC3_family/TVROM.cs b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/MMC3_family/TVROM.cs index 81b7e198fe..0504839bdf 100644 --- a/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/MMC3_family/TVROM.cs +++ b/BizHawk.Emulation/Consoles/Nintendo/NES/Boards/MMC3_family/TVROM.cs @@ -15,6 +15,8 @@ namespace BizHawk.Emulation.Consoles.Nintendo AssertPrg(64); AssertChr(64); AssertVram(8); AssertWram(0); AssertBattery(false); break; + case "NES-TR1ROM": // Gauntlet variant (untested!) + break; default: return false; }