fix GetWindowPlacement hook for child windows
This commit is contained in:
parent
1b0a839588
commit
b38aeb30ae
1 changed files with 1 additions and 1 deletions
|
@ -797,7 +797,7 @@ BOOL WINAPI fake_GetWindowPlacement(HWND hWnd, WINDOWPLACEMENT* lpwndpl)
|
|||
lpwndpl->rcNormalPosition.right = g_ddraw.width;
|
||||
lpwndpl->rcNormalPosition.top = 0;
|
||||
}
|
||||
else
|
||||
else if (!(real_GetWindowLongA(hWnd, GWL_STYLE) & WS_CHILD))
|
||||
{
|
||||
real_MapWindowPoints(HWND_DESKTOP, g_ddraw.hwnd, (LPPOINT)&lpwndpl->rcNormalPosition, 2);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue