mouse: Fix Y value in motion events when confinement is active

main
Cameron Gutman 2021-11-14 17:52:41 -06:00
parent fb6aba1938
commit d7d67af441
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ SDL_PrivateSendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relativ
x_min = mouse_rect.x;
y_min = mouse_rect.y;
x_max = x_min + mouse_rect.w - 1;
y_min = y_min + mouse_rect.h - 1;
y_max = y_min + mouse_rect.h - 1;
}
}