From 508b019447b405a2ffe8932e1081dc80ad2e9f97 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 10 Feb 2020 15:09:59 +0200 Subject: [PATCH] - removed useless call in SDL backend Its result wasn't used, and it may invoke function of DDummyFrameBuffer during initial sound precaching --- source/platform/posix/sdl/i_input.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/platform/posix/sdl/i_input.cpp b/source/platform/posix/sdl/i_input.cpp index 6b25d5acb..ac01ebcb9 100644 --- a/source/platform/posix/sdl/i_input.cpp +++ b/source/platform/posix/sdl/i_input.cpp @@ -237,7 +237,6 @@ static bool inGame() static void I_CheckNativeMouse () { bool focus = SDL_GetKeyboardFocus() != NULL; - bool fs = screen->IsFullscreen(); // TODO: We want this to check for demo playback, as well. And paused state bool wantNative = !focus || (!use_mouse || GUICapture || !inGame());