summaryrefslogtreecommitdiff
path: root/src/code/code_800C3C20.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2023-07-07 07:55:10 +1000
committerGitHub <noreply@github.com>2023-07-06 17:55:10 -0400
commitd307a3723313507726d5ebcfda0b5b9cef224d91 (patch)
tree0323cee010466202839a01911697709e8a10e989 /src/code/code_800C3C20.c
parent0ce03133425867723dd81fc66f57bbb8d40aaf7a (diff)
Reorganize Audio Files & Name Remaining Audio Files (#1494)
* reorganize audio files * audio code files * split audio and libaudio * audio_init_params to audio_configuration * simplify file names * move aisetnextbuf to libaudio * move src/audio -> src/code/audio * adjust makefile comment * reorganize again into internal/external * adjust comment * restructure again
Diffstat (limited to 'src/code/code_800C3C20.c')
-rw-r--r--src/code/code_800C3C20.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/code/code_800C3C20.c b/src/code/code_800C3C20.c
deleted file mode 100644
index ef84cd6ff..000000000
--- a/src/code/code_800C3C20.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "global.h"
-
-u8 sSfxBankIds[] = {
- BANK_PLAYER, BANK_ITEM, BANK_ENV, BANK_ENEMY, BANK_SYSTEM, BANK_OCARINA, BANK_VOICE,
-};
-
-void AudioMgr_StopAllSfx(void) {
- u8* bankIdPtr;
-
- for (bankIdPtr = &sSfxBankIds[0]; bankIdPtr < (sSfxBankIds + ARRAY_COUNT(sSfxBankIds)); bankIdPtr++) {
- Audio_StopSfxByBank(*bankIdPtr);
- }
-}