diff --git a/UnleashedRecomp/ui/options_menu.cpp b/UnleashedRecomp/ui/options_menu.cpp index 80737ff7..a6617d0e 100644 --- a/UnleashedRecomp/ui/options_menu.cpp +++ b/UnleashedRecomp/ui/options_menu.cpp @@ -1050,7 +1050,7 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef* conf } else if constexpr (std::is_same_v || std::is_same_v) { - float deltaTime = ImGui::GetIO().DeltaTime; + float deltaTime = std::fmin(ImGui::GetIO().DeltaTime, 1f/15f); bool fastIncrement = isSlider && (leftIsHeld || rightIsHeld) && (time - g_lastTappedTime) > 0.5; bool isPlayIncrementSound = true;