diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-04-03 20:44:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-03 20:44:48 -0500 |
commit | 22fec43f1812cb863ad699b357bd593222ae140c (patch) | |
tree | 4efa162869946a9bfdbde1be498857fac3db3b39 /include | |
parent | a2d206665c6fffbd962375f262b7fbb05c7b7478 (diff) |
More menu work (#33)
* split adventure log menu out and decompile
* add most adventure log matchings w/ 2 nonmatchings and move some relevant data
* more work on other menus
* fully decomp debug stuff around 203B3F0
* more debug menu work
* fix CreatePartnerSelectionMenu nonmatch
* move more data and clean some data up
Diffstat (limited to 'include')
-rw-r--r-- | include/adventure_log.h | 8 | ||||
-rw-r--r-- | include/personality_test.h | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/include/adventure_log.h b/include/adventure_log.h new file mode 100644 index 0000000..219ea59 --- /dev/null +++ b/include/adventure_log.h @@ -0,0 +1,8 @@ +#ifndef ADVENTURE_LOG_H +#define ADVENTURE_LOG_H + +void CreateAdventureLogMenu(void); +void CleanAdventureLogMenu(void); +u32 UpdateAdventureLogMenu(void); + +#endif diff --git a/include/personality_test.h b/include/personality_test.h index c5cc0de..791e225 100644 --- a/include/personality_test.h +++ b/include/personality_test.h @@ -5,7 +5,8 @@ struct unkData { - s16 unk0[12]; + s16 unk0[10]; + u8 *unk14; }; // Definitely wrong but need to figure out better structure later @@ -63,7 +64,7 @@ struct PersonalityStruct_203B404 u32 unk4C; /* 0x50 */ struct unkData *unk50; /* 0x54 */ struct unkData unk54[4]; - /* 0xB4 */ struct PersonalitySubStruct sub; + /* 0xB4 */ u8 unkb4[4]; }; extern struct PersonalityStruct_203B404 *gUnknown_203B404; |