diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-02-12 10:00:36 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2022-02-12 10:00:36 -0500 |
commit | c64413a025b717832b40355813e0e5e68d339b94 (patch) | |
tree | 63aaa2ea739e8a7b6858fb3ef9962113d9575569 | |
parent | 4cd6284647447367ce981a836e40b59111de37e7 (diff) |
Define the `*_WILDDATA_LENGTH` equations to match their data representation
-rw-r--r-- | constants/pokemon_data_constants.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index 64ddc565..ee037a84 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -153,8 +153,8 @@ NUM_HOF_TEAMS EQU 30 NUM_GRASSMON EQU 7 ; data/wild/*_grass.asm table size NUM_WATERMON EQU 3 ; data/wild/*_water.asm table size -GRASS_WILDDATA_LENGTH EQU 2 + (1 + NUM_GRASSMON * 2) * 3 -WATER_WILDDATA_LENGTH EQU 2 + (1 + NUM_WATERMON * 2) * 1 +GRASS_WILDDATA_LENGTH EQU 2 + 3 + NUM_GRASSMON * 2 * 3 +WATER_WILDDATA_LENGTH EQU 2 + 1 + NUM_WATERMON * 2 FISHGROUP_DATA_LENGTH EQU 1 + 2 * 3 NUM_ROAMMON_MAPS EQU 16 ; RoamMaps table size (see data/wild/roammon_maps.asm) |