diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2019-04-04 12:49:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-04 12:49:17 -0500 |
commit | 8361ada4babbd77a2a5dc5065903252985a4c27a (patch) | |
tree | 545b7b8a864817733fd8760a3c9cb38849fb1061 /src/battle_script_commands.c | |
parent | e476a6d02d88cb467b7e1d7f8c5b06af7438d738 (diff) | |
parent | 64da3d051ecf8617c081f64a49f62c7e79354585 (diff) |
Merge pull request #656 from ultima-soul/menu_specialized
Decompile some of menu_specialized
Diffstat (limited to 'src/battle_script_commands.c')
-rw-r--r-- | src/battle_script_commands.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/battle_script_commands.c b/src/battle_script_commands.c index 0a0c34ad2..d1d8d87ac 100644 --- a/src/battle_script_commands.c +++ b/src/battle_script_commands.c @@ -6295,16 +6295,16 @@ static void sub_804F100(void) { struct StatsArray currentStats; - GetMonLevelUpWindowStats(&gPlayerParty[gBattleStruct->expGetterMonId], ¤tStats); - DrawLevelUpWindowPg1(0xD, gBattleResources->statsBeforeLvlUp, ¤tStats, 0xE, 0xD, 0xF); + GetMonLevelUpWindowStats(&gPlayerParty[gBattleStruct->expGetterMonId], (u16*) ¤tStats); + DrawLevelUpWindowPg1(0xD, (u16*) gBattleResources->statsBeforeLvlUp,(u16*) ¤tStats, 0xE, 0xD, 0xF); } static void sub_804F144(void) { struct StatsArray currentStats; - GetMonLevelUpWindowStats(&gPlayerParty[gBattleStruct->expGetterMonId], ¤tStats); - DrawLevelUpWindowPg2(0xD, ¤tStats, 0xE, 0xD, 0xF); + GetMonLevelUpWindowStats(&gPlayerParty[gBattleStruct->expGetterMonId], (u16*) ¤tStats); + DrawLevelUpWindowPg2(0xD, (u16*) ¤tStats, 0xE, 0xD, 0xF); } static void sub_804F17C(void) |