Browse Source

Minor cleanup

Sam Lantinga 3 years ago
parent
commit
27fc582b59
1 changed files with 1 additions and 4 deletions
  1. 1 4
      src/events/SDL_mouse.c

+ 1 - 4
src/events/SDL_mouse.c

@@ -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;