From 8f81deae1cb868ee6e75268eabf52fa5f7f139b0 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 19 May 2013 15:26:23 -0700 Subject: [PATCH] Correct sceVaudio NIDs. May fix #1738. --- Core/HLE/sceVaudio.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Core/HLE/sceVaudio.cpp b/Core/HLE/sceVaudio.cpp index 59cb5be303..a72fe47921 100644 --- a/Core/HLE/sceVaudio.cpp +++ b/Core/HLE/sceVaudio.cpp @@ -58,9 +58,9 @@ u32 sceVaudioSetAlcMode(int alcMode) { } const HLEFunction sceVaudio[] = { - {0x03b6807d, WrapU_IU, "sceVaudioOutputBlockingFunction"}, - {0x67585dfd, WrapU_III, "sceVaudioChReserveFunction"}, - {0x8986295e, WrapU_V, "sceVaudioChReleaseFunction"}, + {0x8986295e, WrapU_IU, "sceVaudioOutputBlocking"}, + {0x03b6807d, WrapU_III, "sceVaudioChReserve"}, + {0x67585dfd, WrapU_V, "sceVaudioChRelease"}, {0x346FBE94, WrapU_II, "sceVaudioSetEffectType"}, {0xCBD4AC51, WrapU_I, "sceVaudioSetAlcMode"}, };