Don't grab mouse till UI loads.

This commit is contained in:
Zack Middleton 2011-08-05 19:47:33 +00:00
parent 06231971ed
commit a87b059ab7
1 changed files with 2 additions and 10 deletions

View File

@ -1050,16 +1050,8 @@ void IN_Init( void )
SDL_EnableKeyRepeat( SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL );
keyRepeatEnabled = qtrue;
if( in_mouse->value )
{
mouseAvailable = qtrue;
IN_ActivateMouse( );
}
else
{
mouseAvailable = ( in_mouse->value != 0 );
IN_DeactivateMouse( );
mouseAvailable = qfalse;
}
appState = SDL_GetAppState( );
Cvar_SetValue( "com_unfocused", !( appState & SDL_APPINPUTFOCUS ) );