From 4eb36673f165c93cc57280c6f0e3b73d85adf01e Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Thu, 3 Jul 2014 20:59:54 -0500 Subject: Remove unused cvar in_joystickDebug --- src/sdl/sdl_input.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/sdl') diff --git a/src/sdl/sdl_input.c b/src/sdl/sdl_input.c index 6a3ffd8b..d7b0681d 100644 --- a/src/sdl/sdl_input.c +++ b/src/sdl/sdl_input.c @@ -45,7 +45,6 @@ static cvar_t *in_mouse = NULL; static cvar_t *in_nograb; static cvar_t *in_joystick = NULL; -static cvar_t *in_joystickDebug = NULL; static cvar_t *in_joystickThreshold = NULL; static cvar_t *in_joystickNo = NULL; static cvar_t *in_joystickUseAnalog = NULL; @@ -1010,7 +1009,6 @@ void IN_Init( void *windowData ) in_nograb = Cvar_Get( "in_nograb", "0", CVAR_ARCHIVE ); in_joystick = Cvar_Get( "in_joystick", "0", CVAR_ARCHIVE|CVAR_LATCH ); - in_joystickDebug = Cvar_Get( "in_joystickDebug", "0", CVAR_TEMP ); in_joystickThreshold = Cvar_Get( "joy_threshold", "0.15", CVAR_ARCHIVE ); SDL_StartTextInput( ); -- cgit