From 20f7dca9ae0e79c478f8317a43d06a12aa4c2e60 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sat, 8 Aug 2015 10:05:09 -0400 Subject: [PATCH] support ines header "MAPPER034", fixes a bad dump of something --- BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BxROM.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BxROM.cs index 7a3ee3373c..361bce8559 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/BxROM.cs @@ -31,7 +31,9 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES case "NES-BNROM": //Deadly Towers (U) AssertPrg(128); AssertChr(0); AssertWram(0); AssertVram(8); break; - + case "MAPPER034": // 3-D Battles of World Runner, The (U) [b5].nes + // TODO: No idea what to assert here + break; default: return false; }