diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-30 15:11:22 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-30 15:11:22 -0400 |
commit | a4e406b821808db73574193e0bfdffd6ee756687 (patch) | |
tree | dd3bff339f85de031af3c977f9d7f72c9164e5db /arm9/lib/src/SND_main.c | |
parent | 1d92bac012170fda7ec543433eb9572f75f9b710 (diff) | |
parent | b45ab57b275ffbd0a46852c62f824e6cff73e116 (diff) |
Merge branch 'master' of https://github.com/martmists/pokediamond into pikalax_work
Diffstat (limited to 'arm9/lib/src/SND_main.c')
-rw-r--r-- | arm9/lib/src/SND_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arm9/lib/src/SND_main.c b/arm9/lib/src/SND_main.c index f533b87c..34b839b1 100644 --- a/arm9/lib/src/SND_main.c +++ b/arm9/lib/src/SND_main.c @@ -1,4 +1,6 @@ #include "SND_main.h" +#include "SND_command.h" +#include "SND_alarm.h" #include "global.h" #include "OS_mutex.h" @@ -7,6 +9,7 @@ static struct OSMutex sSndMutex; static s32 sSndInitialized; // TODO remove these declarations once we have the functions in the headers +void OS_InitMutex(struct OSMutex *); void OS_UnlockMutex(struct OSMutex *); void OS_LockMutex(struct OSMutex *); |