mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
Remove volume shift
This commit is contained in:
parent
b438c45659
commit
1b5dce5c93
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user