From 232aa69eb0247cb68f2f940964dcbbb7d9058319 Mon Sep 17 00:00:00 2001 From: raven02 Date: Sun, 17 Mar 2013 19:55:15 +0800 Subject: [PATCH] Fix sound distortion --- Core/HLE/__sceAudio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/__sceAudio.cpp b/Core/HLE/__sceAudio.cpp index 8f5a9e3ca3..3b7c885812 100644 --- a/Core/HLE/__sceAudio.cpp +++ b/Core/HLE/__sceAudio.cpp @@ -273,5 +273,5 @@ int __AudioMix(short *outstereo, int numFrames) // DEBUG_LOG(HLE, "No underrun, mixed %i samples fine", numFrames); } section.unlock(); - return underrun; + return numFrames; }