Change tspeed += 2 to *= 2

- Fixed: The initial keyboard turn rate used the running initial rate whether
  +speed was down or not.
This commit is contained in:
Randy Heit 2013-11-19 19:49:17 -06:00
parent 62ffe7e4e2
commit d4304c3bde
1 changed files with 1 additions and 1 deletions

View File

@ -565,7 +565,7 @@ void G_BuildTiccmd (ticcmd_t *cmd)
int tspeed = speed; int tspeed = speed;
if (turnheld < SLOWTURNTICS) if (turnheld < SLOWTURNTICS)
tspeed *= 2; // slow turn tspeed += 2; // slow turn
if (Button_Right.bDown) if (Button_Right.bDown)
{ {