From 129fdf2a686f8e153cb8f03ee4b400ee1bfcb31d Mon Sep 17 00:00:00 2001 From: Meerkov Date: Thu, 29 Sep 2016 01:10:23 -0700 Subject: [PATCH] Revert "Allow Fast Forward Volume to be Louder than Normal Volume" This reverts commit 4bd660894037edb3d4016c7c3616559a19a0dab4. --- 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 95ef63e6eb..6730c61d2e 100644 --- a/BizHawk.Client.EmuHawk/MainForm.cs +++ b/BizHawk.Client.EmuHawk/MainForm.cs @@ -2777,7 +2777,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; }