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.
This commit is contained in:
alyosha-tas 2016-09-03 13:53:27 -04:00 committed by GitHub
parent 3f7293587b
commit 4f1bfb4e82
1 changed files with 8 additions and 0 deletions

View File

@ -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;