summaryrefslogtreecommitdiff
path: root/src/code/code_800E6840.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_800E6840.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_800E6840.c')
-rw-r--r--src/code/code_800E6840.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/code/code_800E6840.c b/src/code/code_800E6840.c
deleted file mode 100644
index caaaea332..000000000
--- a/src/code/code_800E6840.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include "global.h"
-
-void Audio_InvalDCache(void* buf, s32 size) {
- OSIntMask prevMask = osSetIntMask(OS_IM_NONE);
-
- osInvalDCache(buf, size);
- osSetIntMask(prevMask);
-}
-
-void Audio_WritebackDCache(void* buf, s32 size) {
- OSIntMask prevMask = osSetIntMask(OS_IM_NONE);
-
- osWritebackDCache(buf, size);
- osSetIntMask(prevMask);
-}