Allow Fast Forward Volume to be Louder than Normal Volume
Allows FF Volume to override the normal volume, instead of multiplying it (which could only decrease the volume).
This commit is contained in:
parent
4aa64b1f34
commit
4bd6608940
|
@ -2810,7 +2810,7 @@ namespace BizHawk.Client.EmuHawk
|
|||
if (isFastForwarding || IsTurboing || isRewinding)
|
||||
{
|
||||
if (Global.Config.SoundEnabledRWFF)
|
||||
atten *= Global.Config.SoundVolumeRWFF / 100.0f;
|
||||
atten = Global.Config.SoundVolumeRWFF / 100.0f;
|
||||
else
|
||||
atten = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue