From 7182d77c05415519fe3c02b1b49abf5c8f14a2c5 Mon Sep 17 00:00:00 2001 From: adelikat Date: Thu, 9 Oct 2014 21:28:00 +0000 Subject: [PATCH] much bigger dynamic contrast in volume range --- BizHawk.Client.EmuHawk/Sound.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.EmuHawk/Sound.cs b/BizHawk.Client.EmuHawk/Sound.cs index 62388a2823..bef8604c86 100644 --- a/BizHawk.Client.EmuHawk/Sound.cs +++ b/BizHawk.Client.EmuHawk/Sound.cs @@ -271,7 +271,7 @@ namespace BizHawk.Client.EmuHawk if (!Global.Config.SoundEnabled || Global.Config.SoundVolume == 0) DSoundBuffer.Volume = -5000; else - DSoundBuffer.Volume = 0 - ((100 - Global.Config.SoundVolume) * 15); + DSoundBuffer.Volume = 0 - ((100 - Global.Config.SoundVolume) * 45); } } #else