Yay, typo :p

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3262 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
ramapcsx2 2010-06-21 15:37:26 +00:00
parent 5f85a0c956
commit bd9606ab0b
1 changed files with 2 additions and 2 deletions

View File

@ -769,8 +769,8 @@ __forceinline void Mix()
else
{
// SndOutVolumeShift + 1 because sound output is notoriously too quiet (rama)
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+1), Cores[1].MasterVol.Left.Value );
Out.Right = MulShr32( Out.Right<<(SndOutVolumeShift+1), Cores[1].MasterVol.Right.Value );
// Final Clamp!
// This could be circumvented by using 1/2th total output volume, although