move to debug file

This commit is contained in:
DizzyEggg
2025-06-11 18:01:16 +02:00
parent d3597af1b3
commit bcdf4d672f
83 changed files with 185 additions and 215 deletions

View File

@@ -1,21 +0,0 @@
#ifndef GUARD_CODE_80118A4_H
#define GUARD_CODE_80118A4_H
void FadeOutAllMusic(u16);
void PlayMenuSoundEffect(u32);
void PlaySound(u16);
void StopAllMusic_1(void);
void sub_801180C(void);
void sub_8011830(void);
void sub_8011860(void);
void FadeInNewBGM_(u16 songIndex, u16 speed);
void FadeOutBGM_(u16 speed);
void FadeOutSound(u16 songIndex, u16 speed);
void QueueBGM_(u16 songIndex);
void PlaySoundWithVolume(u16 songIndex, u16 volume);
void StartBGMusic(void);
void xxx_call_start_new_bgm(u16 songIndex);
void StopBGMusic(void);
void StopSound(u16 songIndex);
#endif // GUARD_CODE_80118A4_H

24
include/music_util.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef GUARD_MUSIC_UTIL_H
#define GUARD_MUSIC_UTIL_H
void ResetSoundEffectCounters(void);
void StopBGMResetSoundEffectCounters(void);
void StartBGMusic(void);
void UpdateSoundEffectCounters(void);
void StopAllMusic_1(void);
void FadeOutAllMusic(u16);
void StartNewBGM_(u16 songIndex);
void FadeInNewBGM_(u16 songIndex, u16 speed);
void QueueBGM_(u16 songIndex);
void StopBGMusic(void);
void FadeOutBGM_(u16 speed);
bool8 IsEqualtoBGTrack(u16 songIndex);
void PlaySoundWithVolume(u16 songIndex, u16 volume);
void PlaySound(u16 songIndex);
void StopSound(u16 songIndex);
void FadeOutSound(u16 songIndex, u16 speed);
bool8 IsSoundPlaying(u16 songIndex);
void PlayMenuSoundEffect(u32 arrId);
void sub_8011A04(void);
#endif // GUARD_MUSIC_UTIL_H