diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-11-19 01:03:14 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-11-19 01:03:14 +0100 |
commit | 95d3c180cc13b228dc10e6503b4a30c60f164f48 (patch) | |
tree | 47c07d0629df8edd2861607d045b2a88db8ee8e8 /src/start_menu.c | |
parent | 963989d760a09eab46607efe1cbc1029f00e1842 (diff) |
clean up variables in files
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. |