From 41030161df8a2de89d1a4da72db0db5c24b643d2 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Sat, 25 Jan 2020 00:08:25 -0600 Subject: [PATCH] [nostalgia/core/gba] Change type of MEM_ROM --- src/nostalgia/core/gba/addresses.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostalgia/core/gba/addresses.hpp b/src/nostalgia/core/gba/addresses.hpp index 7fce5b29..6cf22c39 100644 --- a/src/nostalgia/core/gba/addresses.hpp +++ b/src/nostalgia/core/gba/addresses.hpp @@ -45,7 +45,7 @@ typedef uint16_t BgMapTile[1024]; #define MEM_BG_MAP reinterpret_cast(0x06000000) -#define MEM_ROM *reinterpret_cast(0x08000000) +#define MEM_ROM *reinterpret_cast(0x08000000) #define MEM_WRAM_BEGIN reinterpret_cast(0x02000000) #define MEM_WRAM_END reinterpret_cast(0x0203FFFF)