mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +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;
|
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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue