diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2018-11-19 13:29:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 13:29:07 -0600 |
commit | 6acf6aed0486d090bf4f8e731189b9d4ad07dadb (patch) | |
tree | 14944f58ff26ce5d59ed1383e9550a6215cbc83e /src/start_menu.c | |
parent | 8f2ddf2997041bc813a32ac604002fcbb987e3a0 (diff) | |
parent | 58a1bba059a74203edb5d8819bf7af7e1171877a (diff) |
Merge pull request #391 from DizzyEggg/frontier
Clean up bss/common/ewram symbols and decompile mossdeep
Diffstat (limited to 'src/start_menu.c')
-rw-r--r-- | src/start_menu.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/start_menu.c b/src/start_menu.c index 976cbe2a6..455d26509 100644 --- a/src/start_menu.c +++ b/src/start_menu.c @@ -35,6 +35,7 @@ #include "field_player_avatar.h" #include "battle_pyramid_bag.h" #include "battle_pike.h" +#include "new_game.h" // Menu actions enum @@ -63,6 +64,10 @@ enum SAVE_ERROR }; +// IWRAM common +bool8 (*gMenuCallback)(void); + +// EWRAM EWRAM_DATA static u8 sSafariBallsWindowId = 0; EWRAM_DATA static u8 sBattlePyramidFloorWindowId = 0; EWRAM_DATA static u8 sStartMenuCursorPos = 0; @@ -76,7 +81,6 @@ EWRAM_DATA static bool8 sSavingComplete = FALSE; EWRAM_DATA static u8 sSaveInfoWindowId = 0; // Extern variables. -extern u8 gDifferentSaveFile; extern u8 gUnknown_03005DB4; // Extern functions in not decompiled files. |