summaryrefslogtreecommitdiff
path: root/src/main_menu_1.c
diff options
context:
space:
mode:
authorSeth Barberee <seth.barberee@gmail.com>2021-04-03 20:44:48 -0500
committerGitHub <noreply@github.com>2021-04-03 20:44:48 -0500
commit22fec43f1812cb863ad699b357bd593222ae140c (patch)
tree4efa162869946a9bfdbde1be498857fac3db3b39 /src/main_menu_1.c
parenta2d206665c6fffbd962375f262b7fbb05c7b7478 (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 'src/main_menu_1.c')
-rw-r--r--src/main_menu_1.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/main_menu_1.c b/src/main_menu_1.c
deleted file mode 100644
index d79a420..0000000
--- a/src/main_menu_1.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "global.h"
-
-s32 sub_8011FA8(void);
-s32 sub_8095324(u32);
-s32 sub_8011C1C(void);
-
-bool8 sub_8039844(void)
-{
- int iVar1;
- bool8 return_var;
-
- iVar1 = sub_8011FA8();
- return_var = 0;
- if (sub_8095324(1) != 0 || sub_8095324(7) != 0)
- {
- if (iVar1 == 0xf1207)
- return_var = 1;
- }
- else if (sub_8011C1C() == 2 && iVar1 == 0xf1207)
- return_var = 1;
- return return_var;
-}