summaryrefslogtreecommitdiff
path: root/src/code/z_lib.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2022-01-11 11:27:36 +1100
committerGitHub <noreply@github.com>2022-01-11 00:27:36 +0000
commit133e02a8a744ec7252b71ca5a0e310367dae037d (patch)
treeba70920d638ff945e806df1b11297b3e33ab43f9 /src/code/z_lib.c
parent6069a1585f34d46178b38554c8d547a266bb4123 (diff)
z_sound_source OK (#353)
* z_sound_source OK * Fix Pos * Lib_PlaySfxByPos * Change function names * format * Update names to match OoT * cleanup from the merge * Fix name
Diffstat (limited to 'src/code/z_lib.c')
-rw-r--r--src/code/z_lib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/z_lib.c b/src/code/z_lib.c
index 5bc49c8ac..84eb8c051 100644
--- a/src/code/z_lib.c
+++ b/src/code/z_lib.c
@@ -647,8 +647,8 @@ void func_801000CC(u16 sfxId) {
func_8019F128(sfxId);
}
-void func_801000F4(s32 a0, u16 sfxId) {
- func_8019F1C0(a0, sfxId);
+void Lib_PlaySfxAtPos(Vec3f* pos, u16 sfxId) {
+ Audio_PlaySfxAtPos(pos, sfxId);
}
void Lib_Vec3f_TranslateAndRotateY(Vec3f* translation, s16 a, Vec3f* src, Vec3f* dst) {