summaryrefslogtreecommitdiff
path: root/arm9/src/sound_chatot.c
diff options
context:
space:
mode:
authorRémi Calixte <remicalixte.rmc@gmail.com>2021-08-04 21:09:49 +0200
committerRémi Calixte <remicalixte.rmc@gmail.com>2021-08-04 21:09:49 +0200
commitac24b510d854953ef9d6f4b412a7de77da29757e (patch)
treee14d59fdca9797700b2845d693f5149dc3bea1c0 /arm9/src/sound_chatot.c
parent599ff56901be2bdee6e96d202a9210685b051daa (diff)
add void in parameter list
Diffstat (limited to 'arm9/src/sound_chatot.c')
-rw-r--r--arm9/src/sound_chatot.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arm9/src/sound_chatot.c b/arm9/src/sound_chatot.c
index 71cc1abc..2efe4843 100644
--- a/arm9/src/sound_chatot.c
+++ b/arm9/src/sound_chatot.c
@@ -8,7 +8,7 @@
#include "unk_020040F4.h"
#include "unk_020051F4.h"
-THUMB_FUNC BOOL FUN_02005CFC()
+THUMB_FUNC BOOL FUN_02005CFC(void)
{
if (*(u8 *)FUN_02003D38(29) == 1 && FUN_02004ABC(14) == 0)
{
@@ -77,7 +77,7 @@ THUMB_FUNC u32 FUN_02005D48(struct SaveChatotSoundClip *param0, u32 param1, s32
return res;
}
-THUMB_FUNC void FUN_02005DFC()
+THUMB_FUNC void FUN_02005DFC(void)
{
u8 *r5 = FUN_02003D38(15);
u8 *r4 = FUN_02003D38(29);
@@ -91,7 +91,7 @@ THUMB_FUNC void FUN_02005DFC()
*r4 = 0;
}
-THUMB_FUNC u32 Chatot_startRecording()
+THUMB_FUNC u32 Chatot_startRecording(void)
{
struct MIC_SamplingData st0;
@@ -110,7 +110,7 @@ THUMB_FUNC u32 Chatot_startRecording()
return GF_MIC_StartAutoSampling(&st0);
}
-THUMB_FUNC void Chatot_stopRecording()
+THUMB_FUNC void Chatot_stopRecording(void)
{
GF_MIC_StopAutoSampling();
}