nes-fix mapper 061

This commit is contained in:
zeromus 2012-07-21 19:45:16 +00:00
parent f775c081f1
commit e66e936567
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ namespace BizHawk.Emulation.Consoles.Nintendo
}
prg_mode = addr.Bit(4);
prg_page = ((addr & 0x0F) << 1) | ((addr & 0x20) >> 4);
prg_page = ((addr & 0x0F) << 1) | ((addr & 0x20) >> 5);
}
public override byte ReadPRG(int addr)