Send more keyboard events to game, fixes Alt issues
This commit is contained in:
parent
31ed343a1e
commit
020168f725
1 changed files with 3 additions and 0 deletions
3
main.c
3
main.c
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue