nes-fix memory map bug, affecting robocop 3 scroll glitches

This commit is contained in:
zeromus 2012-11-05 06:26:52 +00:00
parent 32a3d9db80
commit 69d2a99a2c
1 changed files with 2 additions and 2 deletions

View File

@ -489,7 +489,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
{ {
ret = ram[addr]; ret = ram[addr];
} }
else if (addr < 0x1000) else if (addr < 0x2000)
{ {
ret = ram[addr & 0x7FF]; ret = ram[addr & 0x7FF];
} }
@ -525,7 +525,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
{ {
ret = ram[addr]; ret = ram[addr];
} }
else if (addr < 0x1000) else if (addr < 0x2000)
{ {
ret = ram[addr & 0x7FF]; ret = ram[addr & 0x7FF];
} }