From 8a9b8cfcfddf9790d3869111a10c30dbfbfc0464 Mon Sep 17 00:00:00 2001 From: BearOso Date: Fri, 26 Jul 2024 15:12:58 -0500 Subject: [PATCH] SA1: Change mapping type for banks 40->4f on SA1. --- memmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/memmap.cpp b/memmap.cpp index 407f436c..1c483c6f 100644 --- a/memmap.cpp +++ b/memmap.cpp @@ -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++)