From 4f1bfb4e821138359be41cb45f68435d04038c50 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Sat, 3 Sep 2016 13:53:27 -0400 Subject: [PATCH] Fixes Chip n Dale (PC10) This is quite an unusual case, I'm not sure if there is something wrong with the ROM or if it is really like this. This is basically a hard coded special case. --- .../Consoles/Nintendo/NES/Boards/SxROM.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs index 53e685ee3b..8bb570b00b 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards/SxROM.cs @@ -427,6 +427,14 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES prg_mask = (Cart.prg_size / 16) - 1; vram_mask = (Cart.vram_size*1024) - 1; chr_mask = (Cart.chr_size / 8 * 2) - 1; + //Chip n Dale (PC10) has a nonstandard chr size, which makes the mask nonsense + // let's put in a special case to deal with it + if (Cart.chr_size==136) + { + chr_mask = (128 / 8 * 2) - 1; + } + + if (!disablemirror) SetMirrorType(mmc1.mirror); ppuclock = pputimeout;