diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-03-23 12:11:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 12:11:10 -0500 |
commit | 2fd4f339b42c010191c199772b09ac34c580de94 (patch) | |
tree | e562899f35861ece70c292602fe6aac2f50906bf /include/save.h | |
parent | 7b142311a7294c4c7a943870fa5f24f0fbea604a (diff) |
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
Diffstat (limited to 'include/save.h')
-rw-r--r-- | include/save.h | 8 |
1 files changed, 5 insertions, 3 deletions
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); |