From d8fd72e19a5243c4052a049bb74c7b0ff8774189 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 15 Sep 2010 16:50:08 +0000 Subject: [PATCH] - added Khamsin's fix for visible mouse cursors in Linux fullscreen mode with mouse disabled. SVN r2785 (trunk) --- src/sdl/i_input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/i_input.cpp b/src/sdl/i_input.cpp index 3e94ff045..0fe02cfd2 100644 --- a/src/sdl/i_input.cpp +++ b/src/sdl/i_input.cpp @@ -256,7 +256,7 @@ static void I_CheckNativeMouse () == (SDL_APPINPUTFOCUS|SDL_APPACTIVE); bool fs = (SDL_GetVideoSurface ()->flags & SDL_FULLSCREEN) != 0; - bool wantNative = !focus || !use_mouse || (!fs && (GUICapture || paused || demoplayback || !inGame())); + bool wantNative = !focus || (!fs && (!use_mouse || GUICapture || paused || demoplayback || !inGame())); if (wantNative != NativeMouse) {