Windows: Don't use WS_EX_TOPMOST for fullscreen windows.

This commit is contained in:
Elias Naur 2006-12-22 11:23:45 +00:00
parent d4ea142f89
commit 12c6afef97
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ void closeWindow(HWND *hwnd, HDC *hdc)
void getWindowFlags(DWORD *windowflags_return, DWORD *exstyle_return, bool fullscreen, bool undecorated) {
DWORD exstyle, windowflags;
if (fullscreen) {
exstyle = WS_EX_APPWINDOW | WS_EX_TOPMOST;
exstyle = WS_EX_APPWINDOW;
windowflags = WS_POPUP;
} else if (undecorated) {
exstyle = WS_EX_APPWINDOW;