From 99df7354b1b728b3f0d25f185aeb7109b462661e Mon Sep 17 00:00:00 2001 From: Braden Obrzut Date: Sun, 13 Feb 2011 06:32:10 +0000 Subject: [PATCH] - Fixed: Menu mouse navigation didn't work in fullscreen on Linux. SVN r3151 (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 4f933826e..0e67944f5 100644 --- a/src/sdl/i_input.cpp +++ b/src/sdl/i_input.cpp @@ -263,7 +263,7 @@ static void I_CheckNativeMouse () == (SDL_APPINPUTFOCUS|SDL_APPACTIVE); bool fs = (SDL_GetVideoSurface ()->flags & SDL_FULLSCREEN) != 0; - bool wantNative = !focus || (!fs && (!use_mouse || GUICapture || paused || demoplayback || !inGame())); + bool wantNative = !focus || (!use_mouse || GUICapture || paused || demoplayback || !inGame()); if (wantNative != NativeMouse) {