diff options
author | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-07-27 21:49:23 +0200 |
---|---|---|
committer | Rémi Calixte <remicalixte.rmc@gmail.com> | 2021-07-27 21:49:23 +0200 |
commit | 610a801e1793ae3242aee3855bceae30aff019f6 (patch) | |
tree | c8beb0743816d38afd271314d3b0354718314177 /arm9/src/sound_chatot.c | |
parent | 2caca24385a10df4f0af6000d498350cbb1e92b1 (diff) |
document some chatot sound functions
Diffstat (limited to 'arm9/src/sound_chatot.c')
-rw-r--r-- | arm9/src/sound_chatot.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arm9/src/sound_chatot.c b/arm9/src/sound_chatot.c index c2a4e913..085b6104 100644 --- a/arm9/src/sound_chatot.c +++ b/arm9/src/sound_chatot.c @@ -91,7 +91,7 @@ THUMB_FUNC void FUN_02005DFC() *r4 = 0; } -THUMB_FUNC u32 FUN_02005E28() +THUMB_FUNC u32 Chatot_startRecording() { struct MIC_SamplingData st0; @@ -110,12 +110,12 @@ THUMB_FUNC u32 FUN_02005E28() return GF_MIC_StartAutoSampling(&st0); } -THUMB_FUNC void FUN_02005E64() +THUMB_FUNC void Chatot_stopRecording() { GF_MIC_StopAutoSampling(); } -THUMB_FUNC void FUN_02005E6C(struct SaveChatotSoundClip *param0) +THUMB_FUNC void Chatot_saveRecording(struct SaveChatotSoundClip *param0) { Chatot_Encode(param0, FUN_02004DB4()); } |