Minor cleanup

This commit is contained in:
Sam Lantinga 2022-04-05 15:11:49 -07:00
parent 86acb1a347
commit 27fc582b59
1 changed files with 1 additions and 4 deletions

View File

@ -561,7 +561,6 @@ SDL_PrivateSendMouseButton(SDL_Window * window, SDL_MouseID mouseID, Uint8 state
Uint32 type;
Uint32 buttonstate;
SDL_MouseInputSource *source;
SDL_bool had_buttons_pressed = (SDL_GetMouseState(NULL, NULL) ? SDL_TRUE : SDL_FALSE);
source = GetMouseInputSource(mouse, mouseID);
if (!source) {
@ -1031,14 +1030,12 @@ int
SDL_CaptureMouse(SDL_bool enabled)
{
SDL_Mouse *mouse = SDL_GetMouse();
SDL_Window *focus_window;
if (!mouse->CaptureMouse) {
return SDL_Unsupported();
}
focus_window = SDL_GetKeyboardFocus();
if (enabled && !focus_window) {
if (enabled && SDL_GetKeyboardFocus() == NULL) {
return SDL_SetError("No window has focus");
}
mouse->capture_desired = enabled;