From 2fd4f339b42c010191c199772b09ac34c580de94 Mon Sep 17 00:00:00 2001 From: Seth Barberee Date: Tue, 23 Mar 2021 12:11:10 -0500 Subject: Miscellaneous Work (Again) (#31) * move some personality data from asm to C * combine personality_test files and add my close attempt at RedrawPartnerSelectionMenu * decomp some more wonder mail funcs and label some more data * lots of data splitting and move some to src * split out more dungeon data * continue splitting out more dungeon data * doc rescue team rank/pts funcs/data and exclusive pokemon ewram * doc more sound things and decomp a func * decomp LoadTeamRankBadge and label some data members * split out rescue team and text util stuff * forgot a constant * match a few funcs and clean up a few * cleaned up sub_80A28B4 --- include/save.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'include/save.h') diff --git a/include/save.h b/include/save.h index cbbd794..4ea03c6 100644 --- a/include/save.h +++ b/include/save.h @@ -2,6 +2,8 @@ #define SAVE_H #include "time.h" +#include "exclusive_pokemon.h" +#include "rescue_team_info.h" struct UnkStruct_sub_8011DAC { u8 fill000[0x4]; @@ -32,9 +34,9 @@ struct UnkStruct_203B184 { /* 0x10 */ u32 *unk10; /* 0x14 */ u32 *unk14; /* 0x18 */ u32 unk18; - /* 0x1C */ u32 unk1C; + /* 0x1C */ struct RescueTeamData *RescueTeamInfo; /* 0x20 */ u32 unk20; - /* 0x24 */ u8 *ExclusivePokemon; + /* 0x24 */ struct ExclusivePokemonData *ExclusivePokemon; /* 0x28 */ u8 *BoughtFriendAreas; /* 0x2C */ u32 unk2C; /* 0x30 */ struct PlayTimeStruct *playTime; @@ -66,7 +68,7 @@ void sub_8012468(void); u8 sub_8012484(void); void sub_8012558(void); void sub_8012574(s16 PokemonID); -u8 sub_8012600(void); +bool8 sub_8012600(void); u32 sub_8012744(void); void sub_8012750(void); u32 sub_80127A8(void); -- cgit v1.2.3