summaryrefslogtreecommitdiff
path: root/include/constants
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2021-11-01 12:02:08 -0400
committerGriffinR <griffin.g.richards@gmail.com>2021-11-08 09:41:23 -0500
commit1548e902cd6d9515362b171ae9aa5ff36c60b230 (patch)
tree7dc83e8315dedd8a7de741538956c786a0d2db39 /include/constants
parent7940f121f66bb0ebe0932bc642c3d9b4015f79a7 (diff)
Add MonCoods size macro
Diffstat (limited to 'include/constants')
-rw-r--r--include/constants/pokemon.h4
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