1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

remove invalid ExStyle

This commit is contained in:
FunkyFr3sh 2024-09-18 17:59:34 +02:00
parent 5901d12597
commit e142d06946

View File

@ -1826,6 +1826,13 @@ HWND WINAPI fake_CreateWindowExA(
hWndParent = g_ddraw.hwnd;
}
/* A Bug's Life Action Game */
//HIWORD(lpClassName) && _strcmpi(lpClassName, "Bugs") == 0 &&
if (dwExStyle == 0x01000008)
{
dwExStyle = WS_EX_TOPMOST;
}
/* Fix for SMACKW32.DLL creating another window that steals the focus */
if (HIWORD(lpClassName) && _strcmpi(lpClassName, "MouseTypeWind") == 0 && g_ddraw.ref && g_ddraw.hwnd)
{