From 5e81da0b67d7fe85abcd058b8e69bb32bc845c6a Mon Sep 17 00:00:00 2001 From: Brandon Wright Date: Sun, 23 Jun 2019 16:48:03 -0500 Subject: [PATCH] win32: Apply turbo mode volume when rewinding. --- win32/win32_sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/win32_sound.cpp b/win32/win32_sound.cpp index 4f349a0c..f59f1a63 100644 --- a/win32/win32_sound.cpp +++ b/win32/win32_sound.cpp @@ -98,7 +98,7 @@ void S9xSoundCallback(void *data) static double last_volume = 1.0; // only try to change volume if we actually need to switch it - double current_volume = (Settings.TurboMode ? GUI.VolumeTurbo : GUI.VolumeRegular) / 100.; + double current_volume = ((Settings.TurboMode || Settings.Rewinding) ? GUI.VolumeTurbo : GUI.VolumeRegular) / 100.; if (last_volume != current_volume) { S9xSoundOutput->SetVolume(current_volume); last_volume = current_volume;