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/diploma.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/diploma.c')
-rw-r--r-- | src/diploma.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/diploma.c b/src/diploma.c index 4d81ad4b0..8fabe3a2f 100644 --- a/src/diploma.c +++ b/src/diploma.c @@ -1,16 +1,15 @@ #include "global.h" +#include "asm.h" #include "main.h" #include "menu.h" #include "palette.h" +#include "pokedex.h" +#include "rom4.h" #include "sprite.h" #include "string_util.h" #include "task.h" #include "text.h" -extern void remove_some_task(void); -extern void sub_80546F0(void); -extern u16 sub_8090FF4(void); - extern u8 gDiplomaTiles[]; extern u8 gDiplomaTilemap[]; extern u8 gDiplomaPalettes[]; |