NESHawk - AVI-NINA 6 - mask the chr bank value

This commit is contained in:
adelikat 2016-10-14 15:21:16 -05:00
parent 1006262899
commit f91a6139cd
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.NES
{
if (addr < 0x2000)
{
addr |= (chr_bank_8k << 13);
addr |= ((chr_bank_8k & chr_bank_mask_8k) << 13);
return VROM[addr];
}
else