Bug fix for mapper 16 submapper 4, allow writes to address range 6000 - 600D. For issue #458.

This commit is contained in:
mjbudd77 2022-02-08 19:01:32 -05:00
parent 2dde684af4
commit 6d942379d6
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ static void BandaiPower(void) {
Sync(); Sync();
SetReadHandler(0x6000, 0x7FFF, BandaiRead); SetReadHandler(0x6000, 0x7FFF, BandaiRead);
SetReadHandler(0x8000, 0xFFFF, CartBR); SetReadHandler(0x8000, 0xFFFF, CartBR);
SetWriteHandler(0x8000, 0xFFFF, BandaiWrite); SetWriteHandler(0x6000, 0xFFFF, BandaiWrite);
} }
static void StateRestore(int version) { static void StateRestore(int version) {