diff options
author | Autechre | 2020-10-08 17:54:30 +0200 |
---|---|---|
committer | GitHub | 2020-10-08 17:54:30 +0200 |
commit | 5f03bb288e72cc19c04060549b486a6311afe9c9 (patch) | |
tree | 45df412881b1fc6e91c66ebb77b1d63cab412acb | |
parent | 7dffabefb0e1572177721951d6536ec355892998 (diff) | |
parent | 82d32b5930b45820314dccaf189cfadeec9143b2 (diff) | |
download | snes9x2005-5f03bb288e72cc19c04060549b486a6311afe9c9.tar.gz snes9x2005-5f03bb288e72cc19c04060549b486a6311afe9c9.tar.bz2 snes9x2005-5f03bb288e72cc19c04060549b486a6311afe9c9.zip |
Merge pull request #75 from justinweiss/map-exhirom-sram
Map ExHiROM banks 2x{6,7} and ax{6,7} to SRAM
-rw-r--r-- | source/memmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/memmap.c b/source/memmap.c index 598149d..98dd0c3 100644 --- a/source/memmap.c +++ b/source/memmap.c @@ -1764,7 +1764,7 @@ void TalesROMMap(bool Interleaved) /* makes more sense to map the range here. */ /* ToP seems to use sram to skip intro??? */ - if (c >= 0x300) + if (c >= 0x200) { Memory.Map [c + 6] = Memory.Map [c + 0x806] = MAP_HIROM_SRAM_OR_NONE; Memory.Map [c + 7] = Memory.Map [c + 0x807] = MAP_HIROM_SRAM_OR_NONE; |