summaryrefslogtreecommitdiff
path: root/src/load_screen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/load_screen.c')
-rw-r--r--src/load_screen.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/load_screen.c b/src/load_screen.c
new file mode 100644
index 0000000..d79a420
--- /dev/null
+++ b/src/load_screen.c
@@ -0,0 +1,22 @@
+#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;
+}