removed the WS_BORDER flag in FS as it caused issues on some configs

This commit is contained in:
myT 2017-03-14 05:22:12 +01:00
parent ddb6f080f3
commit 7ccf48f10d

View file

@ -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