1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-16 06:18:53 +01:00

minimize on WM_AUTORENDERER (windows only)

This commit is contained in:
FunkyFr3sh 2018-09-09 23:13:41 +02:00
parent f5698f2d0b
commit 77ac049c41

@ -660,10 +660,13 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
case WM_AUTORENDERER: case WM_AUTORENDERER:
{ {
mouse_unlock(); mouse_unlock();
SetWindowPos(ddraw->hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); SetWindowPos(ddraw->hWnd, HWND_BOTTOM, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
SetWindowPos(ddraw->hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE); SetWindowPos(ddraw->hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
//ShowWindow(ddraw->hWnd, SW_MINIMIZE); if (!ddraw->wine)
//ShowWindow(ddraw->hWnd, SW_RESTORE); {
ShowWindow(ddraw->hWnd, SW_MINIMIZE);
ShowWindow(ddraw->hWnd, SW_RESTORE);
}
mouse_lock(); mouse_lock();
return 0; return 0;
} }