From 37727b892ce4637934739e4dd68853c736cd4eee Mon Sep 17 00:00:00 2001 From: Thilo Schulz Date: Tue, 8 Mar 2011 02:14:39 +0000 Subject: [PATCH] Rename cvar "in_joystickThreshold" to "joy_threshold" as QVMs use the latter name. --- code/sdl/sdl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/sdl/sdl_input.c b/code/sdl/sdl_input.c index 9a509cd8..00818ebe 100644 --- a/code/sdl/sdl_input.c +++ b/code/sdl/sdl_input.c @@ -1005,7 +1005,7 @@ void IN_Init( void ) in_joystick = Cvar_Get( "in_joystick", "0", CVAR_ARCHIVE|CVAR_LATCH ); in_joystickDebug = Cvar_Get( "in_joystickDebug", "0", CVAR_TEMP ); - in_joystickThreshold = Cvar_Get( "in_joystickThreshold", "0.15", CVAR_ARCHIVE ); + in_joystickThreshold = Cvar_Get( "joy_threshold", "0.15", CVAR_ARCHIVE ); #ifdef MACOS_X_ACCELERATION_HACK in_disablemacosxmouseaccel = Cvar_Get( "in_disablemacosxmouseaccel", "1", CVAR_ARCHIVE );