diff options
author | Marcus Huderle <huderlem@gmail.com> | 2017-09-17 20:43:34 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2017-09-17 20:43:34 -0700 |
commit | f2b5416c20ba48a09f590dd727e533177254b5c8 (patch) | |
tree | bf3dffb840341bf512e0cd8dd5c4ab01f45a8d84 /include/party_menu.h | |
parent | c1c2015f7046676b043641c0d1f9d9e29bc73647 (diff) |
Decompile PrintNewStatsInLevelUpWindow()
Diffstat (limited to 'include/party_menu.h')
-rw-r--r-- | include/party_menu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/party_menu.h b/include/party_menu.h index 5250486bb..a78e6c979 100644 --- a/include/party_menu.h +++ b/include/party_menu.h @@ -18,7 +18,6 @@ struct PartyPopupMenu // TODO: Unify these two structs -#define DATA_COUNT (6) struct Unk201B000 { //u8 filler0[0x260]; @@ -30,7 +29,8 @@ struct Unk201B000 u8 unk261; u8 unk262; u8 unk263; - s16 unk264[DATA_COUNT * 2]; // This may be a union + // Stat growth upon level-up. First 6 bytes = old stats, Second 6 bytes = new stats. + s16 statGrowths[NUM_STATS * 2]; u8 filler27C[2]; s16 unk27E; s16 unk280; @@ -122,7 +122,6 @@ void sub_806E6F0(); void sub_806E750(u8, const struct PartyPopupMenu *, const struct PartyMenuItem *, int); void sub_806E7D0(u8, const struct PartyPopupMenu *); TaskFunc PartyMenuGetPopupMenuFunc(u8, const struct PartyPopupMenu *, const struct PartyMenuItem *, u8); -void sub_8070968(); void sub_8070A20(); void Task_RareCandy3(u8); void sub_8070C54(); @@ -167,7 +166,8 @@ void DoPPUpItemEffect(u8, u16, TaskFunc); void DoRareCandyItemEffect(u8, u16, TaskFunc); void Task_RareCandy1(u8); void Task_RareCandy2(u8); -void sub_8070848(u8 taskId); +void PrintStatGrowthsInLevelUpWindow(u8 taskId); +void PrintNewStatsInLevelUpWindow(u8 taskId); void sub_806CA60(u8 taskId); void sub_806CD5C(u8 taskId); void DoTakeMail(u8 taskId, TaskFunc func); |