diff --git a/imgui.cpp b/imgui.cpp index dc1f114..08c215e 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -7627,9 +7627,9 @@ if (g.ActiveIdSource == ImGuiInputSource_Nav) { adjust_delta = NavGetTweakDelta().x; - if (IsKeyDownMap(ImGuiKey_NavTweakFaster) && g.DragSpeedScaleFast >= 0.0f) + if (IsKeyDownMap(ImGuiKey_NavTweakFaster)) adjust_delta *= 10.0f; - if (IsKeyDownMap(ImGuiKey_NavTweakSlower) && g.DragSpeedScaleSlow >= 0.0f) + if (IsKeyDownMap(ImGuiKey_NavTweakSlower)) adjust_delta /= 10.0f; } adjust_delta *= v_speed;