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

Send more keyboard events to game, fixes Alt issues

This commit is contained in:
Toni Spets 2010-11-26 20:21:22 +02:00
parent 31ed343a1e
commit 020168f725

3
main.c
View File

@ -309,6 +309,9 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
}
}
#endif
case WM_KEYUP:
case WM_SYSKEYDOWN:
case WM_SYSKEYUP:
return ddraw->WndProc(hWnd, uMsg, wParam, lParam);
case WM_LBUTTONDOWN:
case WM_RBUTTONDOWN: