diff options
author | Zack Middleton <zturtleman@gmail.com> | 2014-07-03 20:59:54 -0500 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2014-08-28 11:03:33 +0100 |
commit | 4eb36673f165c93cc57280c6f0e3b73d85adf01e (patch) | |
tree | 3345c08ba0eac748ca0ed940d403baede664b9a8 /src/sdl | |
parent | 13e150eccf5fd37da4a85669330b1cd117862308 (diff) |
Remove unused cvar in_joystickDebug
Diffstat (limited to 'src/sdl')
-rw-r--r-- | src/sdl/sdl_input.c | 2 |
1 files changed, 0 insertions, 2 deletions
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( ); |