From 7ccf48f10dae89b6873028cf16f7a0c81dd9ec86 Mon Sep 17 00:00:00 2001 From: myT Date: Tue, 14 Mar 2017 05:22:12 +0100 Subject: [PATCH] removed the WS_BORDER flag in FS as it caused issues on some configs --- code/win32/win_glimp.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/win32/win_glimp.cpp b/code/win32/win_glimp.cpp index 5011dbb..c93f34d 100644 --- a/code/win32/win_glimp.cpp +++ b/code/win32/win_glimp.cpp @@ -491,9 +491,7 @@ static qbool GLW_CreateWindow( int width, int height, int colorbits ) if ( glInfo.isFullscreen ) { - // WS_BORDER fixes the single black flash that happens when reloading a map - // right after switching from windowed mode to full-screen - style |= WS_POPUP | WS_BORDER; + style |= WS_POPUP; exstyle = WS_EX_TOPMOST; } else