From 4bd660894037edb3d4016c7c3616559a19a0dab4 Mon Sep 17 00:00:00 2001 From: Meerkov Date: Wed, 28 Sep 2016 22:40:14 -0700 Subject: [PATCH] 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). --- BizHawk.Client.EmuHawk/MainForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/MainForm.cs b/BizHawk.Client.EmuHawk/MainForm.cs index 342f1f3f84..df7c448a1d 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -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; }