Snes9x - Don't map high SRAM range on LoROM if no SRAM. (#1047)

This commit is contained in:
bladeoner 2023-01-30 22:07:33 +01:00 committed by GitHub
parent 74fb38bcd1
commit c74bfa27a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2857,7 +2857,8 @@ void CMemory::map_LoROMSRAM (void)
hi = 0xffff; hi = 0xffff;
map_index(0x70, 0x7d, 0x0000, hi, MAP_LOROM_SRAM, MAP_TYPE_RAM); map_index(0x70, 0x7d, 0x0000, hi, MAP_LOROM_SRAM, MAP_TYPE_RAM);
map_index(0xf0, 0xff, 0x0000, hi, MAP_LOROM_SRAM, MAP_TYPE_RAM); if (SRAMSize > 0)
map_index(0xf0, 0xff, 0x0000, hi, MAP_LOROM_SRAM, MAP_TYPE_RAM);
} }
void CMemory::map_HiROMSRAM (void) void CMemory::map_HiROMSRAM (void)