From a423b93ad8644222f5b51d5e5643748b11bb8885 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Fri, 22 Jul 2022 18:00:44 +1000 Subject: [PATCH] - Use `turnscale` in controller pitch calculations, which is only used in SW when on a sector object, and is original behaviour. --- source/core/gameinput.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/core/gameinput.cpp b/source/core/gameinput.cpp index e416ff6d9..a0b10c42b 100644 --- a/source/core/gameinput.cpp +++ b/source/core/gameinput.cpp @@ -189,11 +189,11 @@ 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) * BAngToDegree; + double const hidspeed = getTicrateScale(running ? RUNNINGTURNBASE : NORMALTURNBASE) * turnscale * BAngToDegree; // process mouse and initial controller input. if (!strafing) - currInput->avel += float(hidInput->mouseturnx + (scaleAdjust * hidInput->dyaw * hidspeed * turnscale)); + currInput->avel += float(hidInput->mouseturnx + (scaleAdjust * hidInput->dyaw * hidspeed)); else currInput->svel -= int16_t(((hidInput->mousemovex * mousevelscale) + (scaleAdjust * hidInput->dyaw * keymove)) * hidprescale); @@ -216,7 +216,7 @@ void processMovement(InputPacket* const currInput, InputPacket* const inputBuffe if (turnleft || turnright) { updateTurnHeldAmt(scaleAdjust); - float const turnamount = float(scaleAdjust * hidspeed * turnscale * (isTurboTurnTime() ? 1. : PREAMBLESCALE)); + float const turnamount = float(scaleAdjust * hidspeed * (isTurboTurnTime() ? 1. : PREAMBLESCALE)); if (turnleft) currInput->avel -= turnamount;