diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2020-03-22 14:50:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 14:50:33 -0400 |
commit | 4f65d54095908a1bcf068c7712bca9d4c34f10a3 (patch) | |
tree | 98931db924a98c2fc6e1ee0c47ab9f8fa2763d9d /src/battle_script_commands.c | |
parent | ec93f0bb084f7b98ac8853794d430aed8c6a5298 (diff) | |
parent | cce652dc9b40f0c673432f55a757aae8c4d4064e (diff) |
Merge pull request #309 from PikalaxALT/pokemon_special_anim
Pokemon special anim
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index de505827f..225a47729 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -5828,7 +5828,7 @@ static void DrawLevelUpWindow1(void) { u16 currStats[NUM_STATS]; - BufferMonStatsToTaskData(&gPlayerParty[gBattleStruct->expGetterMonId], currStats); + GetMonLevelUpWindowStats(&gPlayerParty[gBattleStruct->expGetterMonId], currStats); DrawLevelUpWindowPg1(12, gBattleResources->beforeLvlUp->stats, currStats, 0xE, 0xD, 0xF); } @@ -5836,7 +5836,7 @@ static void DrawLevelUpWindow2(void) { u16 currStats[NUM_STATS]; - BufferMonStatsToTaskData(&gPlayerParty[gBattleStruct->expGetterMonId], currStats); + GetMonLevelUpWindowStats(&gPlayerParty[gBattleStruct->expGetterMonId], currStats); DrawLevelUpWindowPg2(12, currStats, 0xE, 0xD, 0xF); } |