enable workaround for fallout 1 as well
This commit is contained in:
parent
a0ec16ba4d
commit
e6c5c4ede2
1 changed files with 2 additions and 2 deletions
|
@ -1602,9 +1602,9 @@ HWND WINAPI fake_CreateWindowExA(
|
|||
dwStyle &= ~WS_POPUP;
|
||||
}
|
||||
|
||||
/* Fallout 2 */
|
||||
/* Fallout 1/2 */
|
||||
if (HIWORD(lpClassName) && _strcmpi(lpClassName, "GNW95 Class") == 0 &&
|
||||
_strcmpi(lpWindowName, "FALLOUT II") == 0)
|
||||
strstr(lpWindowName, "FALLOUT"))
|
||||
{
|
||||
/* Workaround for window not showing up in taskbar sometimes */
|
||||
dwExStyle |= WS_EX_APPWINDOW;
|
||||
|
|
Loading…
Reference in a new issue