diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2017-11-01 23:29:02 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2017-11-01 23:29:02 -0400 |
commit | 1b499670bd8a428f9b0d5506c334aa88bf4272a3 (patch) | |
tree | 29a4852fccc077b4d342e59377d92d0b24df59b1 /src | |
parent | 22f65174237cb16d69aedaf8bff54057ed966e8c (diff) |
IWRAM and EWRAM symbols in region_map
Diffstat (limited to 'src')
-rw-r--r-- | src/region_map.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/region_map.c b/src/region_map.c index 0f0fb1dca..5481606e9 100644 --- a/src/region_map.c +++ b/src/region_map.c @@ -44,8 +44,8 @@ struct RegionMapLocation // Static RAM declarations -EWRAM_DATA struct RegionMap *gRegionMap = NULL; -EWRAM_DATA struct { +static EWRAM_DATA struct RegionMap *gRegionMap = NULL; +static EWRAM_DATA struct { /*0x000*/ void (*unk_000)(void); /*0x004*/ u16 unk_004; /*0x006*/ u16 mapSecId; @@ -55,7 +55,8 @@ EWRAM_DATA struct { /*0xa72*/ bool8 unk_a72; } *gUnknown_0203A148 = NULL; // a74 -IWRAM_DATA bool32 gUnknown_03001180; +static bool32 gUnknown_03001180; +static bool32 gUnknown_03001184; // Static ROM declarations |