add another minimized check for fullscreen mode
This commit is contained in:
parent
28e15077ca
commit
cd5efade5d
1 changed files with 3 additions and 0 deletions
3
src/dd.c
3
src/dd.c
|
@ -827,6 +827,9 @@ HRESULT dd_SetDisplayMode(DWORD dwWidth, DWORD dwHeight, DWORD dwBPP, DWORD dwFl
|
|||
real_GetWindowLongA(g_ddraw->hwnd, GWL_STYLE) | WS_MINIMIZEBOX);
|
||||
}
|
||||
|
||||
if (IsIconic(g_ddraw->hwnd))
|
||||
real_ShowWindow(g_ddraw->hwnd, SW_RESTORE);
|
||||
|
||||
real_SetWindowPos(
|
||||
g_ddraw->hwnd,
|
||||
HWND_TOPMOST,
|
||||
|
|
Loading…
Reference in a new issue