diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-01-31 21:09:12 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-02-04 11:07:16 -0500 |
commit | d482dc28f4c0f1519fb4a006d9f0cfb58c0c02ff (patch) | |
tree | c4e5fec0f3393ae75cb5fce96bd6ea73c7839fda /constants | |
parent | b1c85486283274fbd1dd9072116ab1bb034e7756 (diff) |
Identify four padding bytes in base data as beta front/back pic pointers
Diffstat (limited to 'constants')
-rw-r--r-- | constants/pokemon_data_constants.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index 9ba6953d9..cbdbbd17b 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -19,7 +19,8 @@ BASE_UNKNOWN_1 EQUS "(wBaseUnknown1 - wCurBaseData)" BASE_EGG_STEPS EQUS "(wBaseEggSteps - wCurBaseData)" BASE_UNKNOWN_2 EQUS "(wBaseUnknown2 - wCurBaseData)" BASE_PIC_SIZE EQUS "(wBasePicSize - wCurBaseData)" -BASE_PADDING EQUS "(wBasePadding - wCurBaseData)" +BASE_FRONTPIC EQUS "(wBaseUnusedFrontpic - wCurBaseData)" +BASE_BACKPIC EQUS "(wBaseUnusedBackpic - wCurBaseData)" BASE_GROWTH_RATE EQUS "(wBaseGrowthRate - wCurBaseData)" BASE_EGG_GROUPS EQUS "(wBaseEggGroups - wCurBaseData)" BASE_TMHM EQUS "(wBaseTMHM - wCurBaseData)" |