diff options
author | Marijn van der Werf <marijn.vanderwerf@gmail.com> | 2016-12-02 19:06:22 +0100 |
---|---|---|
committer | YamaArashi <YamaArashi@users.noreply.github.com> | 2016-12-02 10:06:22 -0800 |
commit | 1f222c04ef1d10ff5a5c6bb98cd4380ecf2bba86 (patch) | |
tree | 573d6368233110b17292e498f49532c1c9244404 /src/title_screen.c | |
parent | 4258e60771aa9fdabd678930eca534423bd371b8 (diff) |
[WIP] Extract all external function declarations to headers (#114)
* Extract other external function declarations
* Fix GBA compilation
* Revert `sub_803C434` to asm
Diffstat (limited to 'src/title_screen.c')
-rw-r--r-- | src/title_screen.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/title_screen.c b/src/title_screen.c index 72833a4e9..6100fbdc5 100644 --- a/src/title_screen.c +++ b/src/title_screen.c @@ -1,5 +1,9 @@ #include "global.h" #include "title_screen.h" +#include "asm.h" +#include "clear_save_data_menu.h" +#include "m4a.h" +#include "main_menu.h" #include "intro.h" #include "gba/m4a_internal.h" #include "main.h" @@ -9,11 +13,6 @@ #include "task.h" #include "decompress.h" -extern void m4aSongNumStart(u16); -extern void CB2_InitMainMenu(void); -extern void CB2_InitClearSaveDataScreen(void); -extern void CB2_InitResetRtcScreen(void); - extern u8 gReservedSpritePaletteCount; extern struct MusicPlayerInfo gMPlay_BGM; extern u8 gUnknown_0202F7E4; |