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:
Meerkov 2016-09-28 22:40:14 -07:00
parent 4aa64b1f34
commit 4bd6608940
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}