mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-04 15:10:45 +00:00
- 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.
This commit is contained in:
parent
a423b93ad8
commit
e016f65321
1 changed files with 3 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue