Merge pull request #574 from Xinerki/miami

many additions
This commit is contained in:
erorcun
2020-05-22 15:49:37 +03:00
committed by GitHub
16 changed files with 204 additions and 31 deletions

View File

@ -1222,6 +1222,16 @@ MainWndProc(HWND window, UINT message, WPARAM wParam, LPARAM lParam)
break;
}
#ifdef FIX_BUGS // game turns on menu when focus is re-gained rather than lost
case WM_KILLFOCUS:
#else
case WM_SETFOCUS:
#endif
{
CGame::InitAfterFocusLoss();
break;
}
}
/*