diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-09-08 11:53:48 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-09-16 19:21:23 -0500 |
commit | 85d97542cdb269278aad3cc3735c29845f9d8738 (patch) | |
tree | 73ed7b2dd004aff52c7f6816ac5e7bb2652c9a7f /src/pokemon_summary_screen.c | |
parent | 258784f263d7834696db552a1b47cf6bd1dfd6b4 (diff) |
Use MAX_MON_MOVES constants
Diffstat (limited to 'src/pokemon_summary_screen.c')
-rw-r--r-- | src/pokemon_summary_screen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_summary_screen.c b/src/pokemon_summary_screen.c index 79aac4b5e..932ed5b08 100644 --- a/src/pokemon_summary_screen.c +++ b/src/pokemon_summary_screen.c @@ -121,8 +121,8 @@ static EWRAM_DATA struct PokemonSummaryScreenData u8 metGame; // 0xB u32 pid; // 0xC u32 exp; // 0x10 - u16 moves[4]; // 0x14 - u8 pp[4]; // 0x1C + u16 moves[MAX_MON_MOVES]; // 0x14 + u8 pp[MAX_MON_MOVES]; // 0x1C u16 currentHP; // 0x20 u16 maxHP; // 0x22 u16 atk; // 0x24 |