From 44deeb3e689b09ef97f8d5d66b6009c513f2c8a1 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 16 Aug 2015 08:43:58 -0400 Subject: [PATCH] NEShawk - mapper 168 - the only goodnes rom of Racermate has no wram, handle it similarly to the PRG and CHR issues that copies of this game seem to have --- .../Consoles/Nintendo/NES/Boards/Mapper168.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper168.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper168.cs index 4e0aaa109c..71fbb2ee36 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper168.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/Mapper168.cs @@ -27,7 +27,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES AssertPrg(64); Cart.chr_size = 0; //AssertChr(0); //shitty dumps Cart.vram_size = 64; //AssertVram(64); //shitty dumps - AssertWram(0); + Cart.wram_size = 0; //AssertWram(0); // shitty dumps //AssertBattery(true); // battery is handled directly SetMirrorType(Cart.pad_h, Cart.pad_v); return true;