diff options
author | camthesaxman <cameronghall@cox.net> | 2017-11-26 17:06:07 -0600 |
---|---|---|
committer | camthesaxman <cameronghall@cox.net> | 2017-11-26 17:06:07 -0600 |
commit | 6f0feb7ca09511df0a1d13c99a1ec5c9a46ed06b (patch) | |
tree | f2d0d052e517765fa3002da50d187b1fd48278c1 /src/field/region_map.c | |
parent | 611984671904aa19cf678c59ff2a8682cba09224 (diff) |
don't require MAP_ prefix on MAP_GROUP and MAP_NUM macros
Diffstat (limited to 'src/field/region_map.c')
-rw-r--r-- | src/field/region_map.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/field/region_map.c b/src/field/region_map.c index 5fbe930e1..f2e4b3251 100644 --- a/src/field/region_map.c +++ b/src/field/region_map.c @@ -707,9 +707,9 @@ static void InitializeCursorPosition(void) u16 r9; if (gSaveBlock1.location.mapGroup == 25 - && (gSaveBlock1.location.mapNum == MAP_NUM(MAP_SS_TIDAL_CORRIDOR) - || gSaveBlock1.location.mapNum == MAP_NUM(MAP_SS_TIDAL_LOWER_DECK) - || gSaveBlock1.location.mapNum == MAP_NUM(MAP_SS_TIDAL_ROOMS))) + && (gSaveBlock1.location.mapNum == MAP_NUM(SS_TIDAL_CORRIDOR) + || gSaveBlock1.location.mapNum == MAP_NUM(SS_TIDAL_LOWER_DECK) + || gSaveBlock1.location.mapNum == MAP_NUM(SS_TIDAL_ROOMS))) { sub_80FB600(); return; |