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:
parent
3f7293587b
commit
4f1bfb4e82
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue