]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_sdl.c
changed vid_hasfocus check to use SDL_APPINPUTFOCUS only, not checking
[xonotic/darkplaces.git] / vid_sdl.c
index 396c23f547d7674aebfe0965fc34a8607d0b892a..76cc2ac44a38d2b745e578edaec742e5046b13ea 100644 (file)
--- a/vid_sdl.c
+++ b/vid_sdl.c
@@ -2471,7 +2471,7 @@ void VID_Finish (void)
        appstate = SDL_GetAppState();
 
        vid_hidden = !(appstate & SDL_APPACTIVE);
-       vid_hasfocus = (appstate & SDL_APPMOUSEFOCUS) && (appstate & SDL_APPINPUTFOCUS);
+       vid_hasfocus = (appstate & SDL_APPINPUTFOCUS) != 0;
 #endif
        vid_activewindow = !vid_hidden && vid_hasfocus;