From ce8bea0db656be9fa3e25589198c03c01b715eb1 Mon Sep 17 00:00:00 2001 From: Simon Date: Tue, 17 Jan 2023 21:30:46 +0000 Subject: [PATCH] increase movement speed --- Projects/Android/jni/darkplaces/cl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/Android/jni/darkplaces/cl_input.c b/Projects/Android/jni/darkplaces/cl_input.c index e77cd71..a469df2 100644 --- a/Projects/Android/jni/darkplaces/cl_input.c +++ b/Projects/Android/jni/darkplaces/cl_input.c @@ -430,7 +430,7 @@ float CL_KeyState (kbutton_t *key) //========================================================================== cvar_t cl_upspeed = {CVAR_SAVE, "cl_upspeed","400","vertical movement speed (while swimming or flying)"}; -cvar_t cl_movementspeed = {CVAR_SAVE, "cl_movementspeed","150","forward movement speed"}; +cvar_t cl_movementspeed = {CVAR_SAVE, "cl_movementspeed","170","forward movement speed"}; cvar_t cl_movespeedkey = {CVAR_SAVE, "cl_movespeedkey","2.0","how much +speed multiplies keyboard movement speed"}; cvar_t cl_movecliptokeyboard = {0, "cl_movecliptokeyboard", "0", "if set to 1, any move is clipped to the nine keyboard states; if set to 2, only the direction is clipped, not the amount"};