From d4cf7f248cfc4af8c09c479037227dcff46e7fa5 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Wed, 2 Jul 2025 20:46:50 +1000 Subject: [PATCH] FullscreenUI: Fix default displayed value for FF volume --- src/core/fullscreen_ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/fullscreen_ui.cpp b/src/core/fullscreen_ui.cpp index 128504c6c..989823532 100644 --- a/src/core/fullscreen_ui.cpp +++ b/src/core/fullscreen_ui.cpp @@ -6251,7 +6251,7 @@ void FullscreenUI::DrawAudioSettingsPage() 0, 200, "%d%%"); DrawIntRangeSetting(bsi, FSUI_ICONVSTR(ICON_PF_FAST_FORWARD, "Fast Forward Volume"), FSUI_VSTR("Controls the volume of the audio played on the host when fast forwarding."), "Audio", - "FastForwardVolume", 200, 0, 100, "%d%%"); + "FastForwardVolume", 100, 0, 200, "%d%%"); DrawToggleSetting(bsi, FSUI_ICONVSTR(ICON_FA_VOLUME_XMARK, "Mute All Sound"), FSUI_VSTR("Prevents the emulator from producing any audible sound."), "Audio", "OutputMuted", false);