Mac: Fix SDL_WarpMouseInWindow in fullscreen.
If you switched from a window to fullscreen, your SDL_WarpMouseInWindow calls would be offset by the x and y coordinates of the original window.
This commit is contained in:
parent
5772df05d2
commit
2bfb402659
1 changed files with 6 additions and 3 deletions
|
@ -201,10 +201,13 @@ static void
|
|||
Cocoa_WarpMouse(SDL_Window * window, int x, int y)
|
||||
{
|
||||
SDL_Mouse *mouse = SDL_GetMouse();
|
||||
CGPoint point;
|
||||
CGPoint point = CGMakePoint(x, y);
|
||||
|
||||
point.x = (float)window->x + x;
|
||||
point.y = (float)window->y + y;
|
||||
if (!(window->flags & SDL_WINDOW_FULLSCREEN))
|
||||
{
|
||||
point.x += window->x;
|
||||
point.y += window->y;
|
||||
}
|
||||
|
||||
{
|
||||
/* This makes Cocoa_HandleMouseEvent ignore this delta in the next
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue