From d4304c3bde102fffa49708f331afe454dc67a5c9 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 19 Nov 2013 19:49:17 -0600 Subject: [PATCH] Change tspeed += 2 to *= 2 - Fixed: The initial keyboard turn rate used the running initial rate whether +speed was down or not. --- src/g_game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_game.cpp b/src/g_game.cpp index 506b8e24b..081ffdb53 100644 --- a/src/g_game.cpp +++ b/src/g_game.cpp @@ -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) {