Fix black screen when in_joystick disabled but controller connected.

This commit is contained in:
SmileTheory 2016-08-11 00:46:43 -07:00
parent f47aaa2a61
commit 1cf0b21cda
1 changed files with 2 additions and 1 deletions

View File

@ -1062,7 +1062,8 @@ static void IN_ProcessEvents( void )
case SDL_CONTROLLERDEVICEADDED:
case SDL_CONTROLLERDEVICEREMOVED:
IN_InitJoystick();
if (in_joystick->integer)
IN_InitJoystick();
break;
case SDL_QUIT: