From 5ce7f5cd613bb96baddc97cb38ad2ee074b0b87c Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Wed, 25 Oct 2006 20:04:58 +0000 Subject: "Always run" trick should only be when joyb_speed >= 10. Use 29 as the ideal value in setup as this works in Original, Ultimate and Final Doom, Heretic, Hexen and Strife. Thanks to Janizdreg for this. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 739 --- src/g_game.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/g_game.c') diff --git a/src/g_game.c b/src/g_game.c index 6a46980a..971b7855 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 >= 4 + || joybspeed >= 10 || gamekeydown[key_speed] || joybuttons[joybspeed]; -- cgit v1.2.3