SPU: Adjust final mix volume

This commit is contained in:
refractionpcsx2 2020-11-29 22:32:50 +00:00
parent 55d4604d8f
commit 7f9f7d49c6
1 changed files with 2 additions and 2 deletions

View File

@ -861,8 +861,8 @@ __forceinline
}
else
{
Out.Left = MulShr32(Out.Left << (SndOutVolumeShift + 1), Cores[1].MasterVol.Left.Value);
Out.Right = MulShr32(Out.Right << (SndOutVolumeShift + 1), Cores[1].MasterVol.Right.Value);
Out.Left = MulShr32(Out.Left << SndOutVolumeShift, Cores[1].MasterVol.Left.Value);
Out.Right = MulShr32(Out.Right << SndOutVolumeShift, Cores[1].MasterVol.Right.Value);
#ifdef DEBUG_KEYS
if (postprocess_filter_enabled)