mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 14:51:51 +00:00
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:
parent
62ffe7e4e2
commit
d4304c3bde
1 changed files with 1 additions and 1 deletions
|
@ -565,7 +565,7 @@ void G_BuildTiccmd (ticcmd_t *cmd)
|
|||
int tspeed = speed;
|
||||
|
||||
if (turnheld < SLOWTURNTICS)
|
||||
tspeed *= 2; // slow turn
|
||||
tspeed += 2; // slow turn
|
||||
|
||||
if (Button_Right.bDown)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue