Skip to content

Commit

Permalink
SA1: Change mapping type for banks 40->4f on SA1.
Browse files Browse the repository at this point in the history
  • Loading branch information
bearoso committed Jul 26, 2024
1 parent 881eeae commit 8a9b8cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion memmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3011,7 +3011,7 @@ void CMemory::Map_SA1LoROMMap (void)

// SA-1 Banks 40->4f
for (int c = 0x400; c < 0x500; c++)
SA1.Map[c] = SA1.WriteMap[c] = (uint8*)MAP_HIROM_SRAM;
SA1.Map[c] = SA1.WriteMap[c] = (uint8*) MAP_SA1RAM;

// SA-1 Banks 60->6f
for (int c = 0x600; c < 0x700; c++)
Expand Down

0 comments on commit 8a9b8cf

Please sign in to comment.