Skip to content

Commit

Permalink
Remove volume shift
Browse files Browse the repository at this point in the history
  • Loading branch information
raven02 committed Mar 12, 2013
1 parent b438c45 commit 1b5dce5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/HLE/sceSas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 1b5dce5

Please sign in to comment.