[nostalgia/core/gba] Fix memory range

This commit is contained in:
2020-02-11 21:47:48 -06:00
parent 9d4d3cd331
commit 87968a87f0
3 changed files with 2 additions and 6 deletions
+1 -1
View File
@@ -45,7 +45,7 @@
typedef uint16_t BgMapTile[1024];
#define MEM_BG_MAP reinterpret_cast<BgMapTile*>(0x06000000)
#define MEM_ROM *reinterpret_cast<char*>(0x08000000)
#define MEM_ROM reinterpret_cast<char*>(0x08000000)
#define MEM_WRAM_BEGIN reinterpret_cast<uint8_t*>(0x02000000)
#define MEM_WRAM_END reinterpret_cast<uint8_t*>(0x0203FFFF)