diff --git a/Core/HLE/sceSas.cpp b/Core/HLE/sceSas.cpp index 17b0eb1155..59f4897c5c 100644 --- a/Core/HLE/sceSas.cpp +++ b/Core/HLE/sceSas.cpp @@ -206,8 +206,8 @@ u32 sceSasSetVolume(u32 core, int voiceNum, int leftVol, int rightVol, int effec } SasVoice &v = sas->voices[voiceNum]; - v.volumeLeft = (leftVol << 3); - v.volumeRight = (rightVol << 3); + v.volumeLeft = leftVol; + v.volumeRight = rightVol; v.effectLeft = effectLeftVol; v.effectRight = effectRightVol; return 0;