diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-13 23:32:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-13 23:32:10 -0500 |
commit | 70577e844ddcb8092ab9e55dd0dd7993f68f4122 (patch) | |
tree | 7a09999f6ac2fc2d1b36ece5ec484ec6527a201f /include/constants | |
parent | 8d18d03c791c40bad532c62f217b0f82aadec6d2 (diff) | |
parent | f42eafc85b007cd27e90bc9a1350d589e31bda43 (diff) |
Merge pull request #1548 from GriffinRichards/doc-banim
Document battle_anim_mons
Diffstat (limited to 'include/constants')
-rw-r--r-- | include/constants/pokemon.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/constants/pokemon.h b/include/constants/pokemon.h index 827725fc2..5b6b8cb5e 100644 --- a/include/constants/pokemon.h +++ b/include/constants/pokemon.h @@ -337,7 +337,9 @@ #define NUM_MALE_LINK_FACILITY_CLASSES 8 #define NUM_FEMALE_LINK_FACILITY_CLASSES 8 -#define MON_PIC_SIZE (64 * 64 / 2) +#define MON_PIC_WIDTH 64 +#define MON_PIC_HEIGHT 64 +#define MON_PIC_SIZE (MON_PIC_WIDTH * MON_PIC_HEIGHT / 2) #define BATTLE_ALIVE_EXCEPT_ACTIVE 0 #define BATTLE_ALIVE_ATK_SIDE 1 |