Revert "Fixed relative mode mouse events stopping if you click on the title bar"

This has been better fixed by b28ed02 or another related relative mouse mode change of @slouken in SDL 2.0.17 and as such can be reverted to reduce unneeded processing in WM_MOUSEMOVE
This commit is contained in:
DomGries 2021-10-06 00:36:27 +02:00 committed by Sam Lantinga
parent c542de9213
commit 0d541e5a88
1 changed files with 0 additions and 3 deletions

View File

@ -773,9 +773,6 @@ WIN_WindowProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
SDL_SendMouseMotion(data->window, 0, 0, center_x, center_y);
}
}
} else {
/* We still need to update focus */
SDL_SetMouseFocus(data->window);
}
}
/* don't break here, fall through to check the wParam like the button presses */