commit 200a86cf8378233fbb9e3687620ea9e577c3d773
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Jun 1 18:08:09 2007 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Fri Jun 1 18:08:09 2007 +0000
Up the threshold for the always run hack to 20; it's conceivable that
there are control pads with more than 10 buttons.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 889
---
src/g_game.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/g_game.c b/src/g_game.c
index f46f0d72..dd2c2669 100644
--- a/src/g_game.c
+++ b/src/g_game.c
@@ -392,7 +392,7 @@ void G_BuildTiccmd (ticcmd_t* cmd)
// allowed an autorun effect
speed = key_speed >= NUMKEYS
- || joybspeed >= 10
+ || joybspeed >= 20
|| gamekeydown[key_speed]
|| joybuttons[joybspeed];