mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-24 17:49:52 +01:00
use SetWindowPos rather than ShowWindow trick in WM_AUTORENDER (Works better on WINE)
This commit is contained in:
parent
b8ee01684f
commit
a2ec669793
@ -623,8 +623,10 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
|
|||||||
case WM_AUTORENDERER:
|
case WM_AUTORENDERER:
|
||||||
{
|
{
|
||||||
mouse_unlock();
|
mouse_unlock();
|
||||||
ShowWindow(ddraw->hWnd, SW_MINIMIZE);
|
SetWindowPos(ddraw->hWnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
||||||
ShowWindow(ddraw->hWnd, SW_RESTORE);
|
SetWindowPos(ddraw->hWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
||||||
|
//ShowWindow(ddraw->hWnd, SW_MINIMIZE);
|
||||||
|
//ShowWindow(ddraw->hWnd, SW_RESTORE);
|
||||||
mouse_lock();
|
mouse_lock();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user