don't allow games to hide the taskbar
This commit is contained in:
parent
8f12004d67
commit
815deee85d
1 changed files with 6 additions and 0 deletions
|
@ -532,6 +532,12 @@ int WINAPI fake_MapWindowPoints(HWND hWndFrom, HWND hWndTo, LPPOINT lpPoints, UI
|
|||
|
||||
BOOL WINAPI fake_ShowWindow(HWND hWnd, int nCmdShow)
|
||||
{
|
||||
/* Don't hide the taskbar (Some of The Learning Company games) */
|
||||
if (nCmdShow == SW_HIDE && hWnd && hWnd != g_ddraw.hwnd && hWnd == FindWindowA("Shell_TrayWnd", NULL))
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
if (g_ddraw.ref && g_ddraw.hwnd == hWnd)
|
||||
{
|
||||
/* Make sure we got close/move menu items (Almost all of the The Learning Company games) */
|
||||
|
|
Loading…
Reference in a new issue