From 2f06007ad4909dd8564dbc6f8116291b3b62e3e7 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sun, 7 Nov 2010 23:50:21 +0000 Subject: [PATCH] - added Edward-san's fix for the turbo CCMD. SVN r2998 (trunk) --- src/g_game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/g_game.cpp b/src/g_game.cpp index 1153a9e7c..19acf8c57 100644 --- a/src/g_game.cpp +++ b/src/g_game.cpp @@ -240,9 +240,9 @@ CUSTOM_CVAR (Float, turbo, 100.f, 0) { self = 10.f; } - else if (self > 256.f) + else if (self > 255.f) { - self = 256.f; + self = 255.f; } else {