From 66b2659a4796ddb9e64fdd2d6ff8d5ac3942f9b9 Mon Sep 17 00:00:00 2001 From: Ziemas Date: Mon, 8 Feb 2021 13:15:48 +0100 Subject: [PATCH] SPU2: Correct sample index advancement --- pcsx2/SPU2/Mixer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/SPU2/Mixer.cpp b/pcsx2/SPU2/Mixer.cpp index 432c0d5fc5..26bba5f299 100644 --- a/pcsx2/SPU2/Mixer.cpp +++ b/pcsx2/SPU2/Mixer.cpp @@ -437,7 +437,7 @@ static __forceinline s32 GetVoiceValues(V_Core& thiscore, uint voiceidx) { V_Voice& vc(thiscore.Voices[voiceidx]); - while (vc.SP > 0) + while (vc.SP >= 0) { if (InterpType >= 2) {