From 687573d4c5beb47c56a58a4d812fbe43f58fca7a Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 26 Jan 2020 16:41:52 +0200 Subject: [PATCH] - fixed crash during initialization in Cocoa backend --- source/platform/posix/cocoa/i_input.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/platform/posix/cocoa/i_input.mm b/source/platform/posix/cocoa/i_input.mm index 26352b84f..16c18a8f8 100644 --- a/source/platform/posix/cocoa/i_input.mm +++ b/source/platform/posix/cocoa/i_input.mm @@ -150,7 +150,7 @@ bool IsInGame() void CheckNativeMouse() { - const bool windowed = (NULL == screen) || !screen->IsFullscreen(); + const bool windowed = !vid_fullscreen; bool wantNative; if (windowed)