summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorhuderlem <huderlem@gmail.com>2019-04-01 07:33:33 -0500
committerGitHub <noreply@github.com>2019-04-01 07:33:33 -0500
commitbee1d1cbb03877de40a156710c5c45bc27f339fa (patch)
tree62d794ec1939cee63f3ff99455a1d12ccdc55f24 /include
parentb34961792c65dd31025ebb35d05b39428aad51e0 (diff)
parentcd069446e06c277222be0aaa05fb43b090259234 (diff)
Merge pull request #611 from Phlosioneer/pokedex-area-const-array
Document sAreaGlowTilemapMapping
Diffstat (limited to 'include')
-rw-r--r--include/constants/maps.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/constants/maps.h b/include/constants/maps.h
index e1e2da992..b849749a9 100644
--- a/include/constants/maps.h
+++ b/include/constants/maps.h
@@ -9,4 +9,10 @@
#define MAP_GROUP(map) (MAP_##map >> 8)
#define MAP_NUM(map) (MAP_##map & 0xFF)
+// These groups are used by pokedex_area_screen.c to find wild
+// pokemon locations.
+#define MAP_GROUP_OVERWORLD_MONS MAP_GROUP(PETALBURG_CITY)
+#define MAP_GROUP_SPECIAL_MONS_1 MAP_GROUP(METEOR_FALLS_1F_1R)
+#define MAP_GROUP_SPECIAL_MONS_2 MAP_GROUP(SAFARI_ZONE_NORTHWEST)
+
#endif // GUARD_CONSTANTS_MAPS_H