mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- processMovement()
: Slightly adjust some ratios to provide proper average values.
This commit is contained in:
parent
9b12675f4e
commit
e9326fffe3
1 changed files with 2 additions and 2 deletions
|
@ -1538,8 +1538,8 @@ void processMovement(InputPacket* currInput, InputPacket* inputBuffer, ControlIn
|
|||
static double turnheldtime;
|
||||
int const turnheldamt = 120 / GameTicRate;
|
||||
double const turboturntime = 590. / GameTicRate;
|
||||
double turnamount = ((running ? 1735. : 867.5) / GameTicRate) * turnscale;
|
||||
double preambleturn = turnamount / 3.;
|
||||
double turnamount = ((running ? 43375. / 27. : 867.5) / GameTicRate) * turnscale;
|
||||
double preambleturn = turnamount / (347. / 92.);
|
||||
|
||||
// allow Exhumed to use its legacy values given the drastic difference from the other games.
|
||||
if ((g_gameType & GAMEFLAG_PSEXHUMED) && cl_exhumedoldturn)
|
||||
|
|
Loading…
Reference in a new issue