Merge pull request #5084 from J08nY/issue-5051
Windows: Hide mouse on MOUSE_MODE_CAPTURED
This commit is contained in:
commit
ce328ce99b
|
@ -708,7 +708,7 @@ LRESULT OS_Windows::WndProc(HWND hWnd,UINT uMsg, WPARAM wParam, LPARAM lParam) {
|
|||
case WM_SETCURSOR: {
|
||||
|
||||
if(LOWORD(lParam) == HTCLIENT) {
|
||||
if(mouse_mode == MOUSE_MODE_HIDDEN) {
|
||||
if(mouse_mode == MOUSE_MODE_HIDDEN || mouse_mode == MOUSE_MODE_CAPTURED) {
|
||||
//Hide the cursor
|
||||
if(hCursor == NULL)
|
||||
hCursor = SetCursor(NULL);
|
||||
|
|
Loading…
Reference in New Issue