mirror of https://github.com/PCSX2/pcsx2.git
SPU2: Correct sample index advancement
This commit is contained in:
parent
efe0ceb588
commit
66b2659a47
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue