From e016f653215b392ff7371b212b78b5d705541fd8 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 22 Jul 2022 18:02:14 +1000 Subject: [PATCH] - Don't adjust joystick pitch/yaw speeds based on whether autorun is enabled or not. * Only SW did this out of the box. * Duke never did, NBlood has no working joystick setup to compare with, and GZDoom doesn't either. * Fixes #693. --- source/core/gameinput.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index a0b10c42b..efaa40dcc 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -189,7 +189,7 @@ void processMovement(InputPacket* const currInput, InputPacket* const inputBuffe bool const strafing = buttonMap.ButtonDown(gamefunc_Strafe) && allowstrafe; float const mousevelscale = keymove * (1.f / 160.f); double const hidprescale = g_gameType & GAMEFLAG_PSEXHUMED ? 5. : 1.; - double const hidspeed = getTicrateScale(running ? RUNNINGTURNBASE : NORMALTURNBASE) * turnscale * BAngToDegree; + double const hidspeed = getTicrateScale(RUNNINGTURNBASE) * turnscale * BAngToDegree; // process mouse and initial controller input. if (!strafing) @@ -216,7 +216,8 @@ void processMovement(InputPacket* const currInput, InputPacket* const inputBuffe if (turnleft || turnright) { updateTurnHeldAmt(scaleAdjust); - float const turnamount = float(scaleAdjust * hidspeed * (isTurboTurnTime() ? 1. : PREAMBLESCALE)); + double const turnspeed = getTicrateScale(running ? RUNNINGTURNBASE : NORMALTURNBASE) * turnscale * BAngToDegree; + float const turnamount = float(scaleAdjust * turnspeed * (isTurboTurnTime() ? 1. : PREAMBLESCALE)); if (turnleft) currInput->avel -= turnamount;