From b6f227961b2b48c373ba6da47f16c2dc241bf6cd Mon Sep 17 00:00:00 2001 From: Malkierian Date: Sun, 5 Apr 2026 20:47:17 -0700 Subject: [PATCH] Restore sub-100% values for speed modifier slider. (#6465) --- soh/soh/SohGui/SohMenuEnhancements.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/SohGui/SohMenuEnhancements.cpp b/soh/soh/SohGui/SohMenuEnhancements.cpp index c8e6c34d4a..4cf7305373 100644 --- a/soh/soh/SohGui/SohMenuEnhancements.cpp +++ b/soh/soh/SohGui/SohMenuEnhancements.cpp @@ -1801,7 +1801,7 @@ void SohMenu::AddMenuEnhancements() { .CVar(CVAR_CHEAT("SpeedModifier.DoesntChangeJump")); AddWidget(path, "Multiplier:", WIDGET_CVAR_SLIDER_FLOAT) .CVar(CVAR_CHEAT("SpeedModifier.Value")) - .Options(FloatSliderOptions().IsPercentage().Min(1.0f).Max(5.0f).DefaultValue(1.0f).ShowButtons(true).Format( + .Options(FloatSliderOptions().IsPercentage().Min(0.01f).Max(5.0f).DefaultValue(1.0f).ShowButtons(true).Format( "%.0f%%")); AddWidget(path, "Button Combination:", WIDGET_CVAR_BTN_SELECTOR) .CVar(CVAR_CHEAT("SpeedModifier.Btn"))