From 80da809e0c9ba4ce767447d6bf213e8a28a77c52 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Wed, 27 Sep 2023 11:41:40 +1000 Subject: [PATCH] - Apply `cl_noturnscaling` CVAR from feaaf2c15aa67b688b9cbc28ad9d3568bfe4f534 to `GameInput::processVehicle()`. --- source/core/gameinput.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index eb87a21f3..0e03a78ea 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -215,9 +215,11 @@ void GameInput::processVehicle(PlayerAngles* const plrAngles, const float scaleA // Input device turning. const auto hidLeft = mouseInput.X < 0 || joyAxes[JOYAXIS_Yaw] > 0; const auto hidRight = mouseInput.X > 0 || joyAxes[JOYAXIS_Yaw] < 0; + const auto hidDir = hidRight - hidLeft; // Velocity setup. - const auto turnVel = (!(flags & VEH_SCALETURN) && (isTurboTurnTime() || hidLeft || hidRight)) ? (baseVel) : (baseVel * velScale); + const auto scaleVel = !(flags & VEH_SCALETURN) && (cl_noturnscaling || hidDir || isTurboTurnTime()); + const auto turnVel = scaleVel ? baseVel : baseVel * velScale; const auto mouseVel = abs(turnVel * mouseInput.X * m_yaw) * (45.f / 2048.f) / scaleAdjust; const auto maxVel = abs(turnVel * 1.5f);