diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-26 08:24:44 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2018-04-26 08:24:44 -0400 |
commit | 478ac343ff97015adf5b61d8a80dfb1ac1180e67 (patch) | |
tree | 1ce603a3e68f99d6bdf86cef60698deb1cf1fa4e /src | |
parent | e14451c7a5b37425234ad6f2317f77baed8d98df (diff) |
Use labels for two raw flag references
Diffstat (limited to 'src')
-rw-r--r-- | src/region_map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/region_map.c b/src/region_map.c index 4b591c2e5..190cc6576 100644 --- a/src/region_map.c +++ b/src/region_map.c @@ -1341,7 +1341,7 @@ static const struct SpritePalette sFlyTargetIconSpritePalette = {sFlyTargetIcons static const u16 sSpecialFlyAreas[][2] = { // flag, mapSectionId - {0x848, MAPSEC_BATTLE_TOWER}, + {FLAG_LANDMARK_BATTLE_TOWER, MAPSEC_BATTLE_TOWER}, {0xFFFF, MAPSEC_NOTHING}, }; @@ -1565,7 +1565,7 @@ static void CreateFlyTargetGraphics(void) // Draws a light overlay on cities and towns that the player can fly to static void CreateCityTownFlyTargetIcons(void) { - u16 canFlyFlag = 0x80F; + u16 canFlyFlag = FLAG_VISITED_LITTLEROOT_TOWN; u16 i; for (i = 0; i < 16; i++) |