Mapper 99 - add chr masking, fixes bizhawk crashing on a bad dump of VS Super Mario Bros
This commit is contained in:
parent
8033a8c4fc
commit
33b72964d4
BizHawk.Emulation.Cores/Consoles/Nintendo/NES/Boards
|
@ -63,7 +63,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
|
|||
{
|
||||
if (addr < 0x2000)
|
||||
{
|
||||
return VROM[(addr & 0x1FFF) + (NES.VS_chr_reg << 13)];
|
||||
return VROM[(addr & 0x1FFF) + ((NES.VS_chr_reg & chr_mask) << 13)];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue