diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-05-23 16:19:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 16:19:35 -0500 |
commit | eaa141c612dd1689936a21bd57018a55ff686b69 (patch) | |
tree | fafe2a9a562af6a8e36716ff76a5b3e8b30d4411 /src/main_menu.c | |
parent | f402e46cd3c8b7236673d6edbae77903a7cc0618 (diff) |
Keep on keepin on (#38)
* end of may dump of work
* move save text to src
* decomp a little more
Diffstat (limited to 'src/main_menu.c')
-rw-r--r-- | src/main_menu.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/main_menu.c b/src/main_menu.c index 62dc4d9..052ad49 100644 --- a/src/main_menu.c +++ b/src/main_menu.c @@ -4,6 +4,7 @@ #include "adventure_log.h" #include "input.h" #include "menu.h" +#include "memory.h" // NOTE: 0x13 and 0x14 // Communication Screen? @@ -20,10 +21,7 @@ extern struct MainMenu *gMainMenu; -extern void* MemoryAlloc(u32 a, u32 b); -extern void MemoryFill8(u8 *dest, u8 value, s32 size); void sub_8035DA0(void); -extern void MemoryFree(void *); extern void sub_8094C14(void); extern void sub_8099690(u32); @@ -74,7 +72,7 @@ struct unkStruct_203B34C u32 unk4; struct unkSubStruct *unk8; // Array of menu choices?? u8 fillC[0x30 - 0xC]; - s16 unk30; + s16 menuIndex; u8 fill32[0x144 - 0x32]; struct unkData unk144[4]; /* 0x1A4 */ u32 currMenuChoice; |