diff options
Diffstat (limited to 'src/sdl/sdl_input.c')
-rw-r--r-- | src/sdl/sdl_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdl/sdl_input.c b/src/sdl/sdl_input.c index 731aca72..ec96b086 100644 --- a/src/sdl/sdl_input.c +++ b/src/sdl/sdl_input.c @@ -535,7 +535,7 @@ static void IN_DeactivateMouse( void ) if( !r_fullscreen->integer ) { if( ( Key_GetCatcher( ) == KEYCATCH_UI ) && - ( SDL_GetAppState( ) & (SDL_APPMOUSEFOCUS|SDL_APPINPUTFOCUS) ) == (SDL_APPMOUSEFOCUS|SDL_APPINPUTFOCUS) ) + ( SDL_GetAppState( ) & SDL_APPMOUSEFOCUS ) ) SDL_ShowCursor( 0 ); else SDL_ShowCursor( 1 ); |