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/sound.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/sound.c')
-rw-r--r-- | src/sound.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sound.c b/src/sound.c index 77ad2b9f6..56719aa08 100644 --- a/src/sound.c +++ b/src/sound.c @@ -1,5 +1,6 @@ #include "global.h" #include "sound.h" +#include "asm.h" #include "gba/m4a_internal.h" #include "task.h" #include "songs.h" @@ -11,8 +12,6 @@ struct Fanfare u16 duration; }; -extern u32 SpeciesToCryId(u32); - extern u16 gUnknown_020239F8; extern struct MusicPlayerInfo *gMPlay_PokemonCry; extern u8 gPokemonCryBGMDuckingCounter; |