mirror of
https://github.com/encounter/SDL.git
synced 2025-12-09 13:37:56 +00:00
mouse: Fix Y value in motion events when confinement is active
This commit is contained in:
@@ -428,7 +428,7 @@ SDL_PrivateSendMouseMotion(SDL_Window * window, SDL_MouseID mouseID, int relativ
|
|||||||
x_min = mouse_rect.x;
|
x_min = mouse_rect.x;
|
||||||
y_min = mouse_rect.y;
|
y_min = mouse_rect.y;
|
||||||
x_max = x_min + mouse_rect.w - 1;
|
x_max = x_min + mouse_rect.w - 1;
|
||||||
y_min = y_min + mouse_rect.h - 1;
|
y_max = y_min + mouse_rect.h - 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user