mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-31 09:21:28 -04:00
Audio Sfx Functions Decompiled and Documented (code_8019AF00.c) (#1242)
* sfx decomp and docs * function headers * namefixer * oops * better sfx name * PR review * namefixer * PR review * float * namefixer * namefixer * namefixer * PR Suggestions
This commit is contained in:
+7
-6
@@ -639,16 +639,17 @@ void Color_RGBA8_Copy(Color_RGBA8* dst, Color_RGBA8* src) {
|
||||
dst->a = src->a;
|
||||
}
|
||||
|
||||
void func_801000A4(u16 sfxId) {
|
||||
play_sound(sfxId);
|
||||
void Lib_PlaySfx(u16 sfxId) {
|
||||
Audio_PlaySfx(sfxId);
|
||||
}
|
||||
|
||||
void func_801000CC(u16 sfxId) {
|
||||
func_8019F128(sfxId);
|
||||
void Lib_PlaySfx_2(u16 sfxId) {
|
||||
Audio_PlaySfx_2(sfxId);
|
||||
}
|
||||
|
||||
void Lib_PlaySfxAtPos(Vec3f* pos, u16 sfxId) {
|
||||
Audio_PlaySfxAtPos(pos, sfxId);
|
||||
// Unused
|
||||
void Lib_PlaySfx_AtPos(Vec3f* pos, u16 sfxId) {
|
||||
Audio_PlaySfx_AtPos(pos, sfxId);
|
||||
}
|
||||
|
||||
void Lib_Vec3f_TranslateAndRotateY(Vec3f* translation, s16 rotAngle, Vec3f* src, Vec3f* dst) {
|
||||
|
||||
Reference in New Issue
Block a user