Browse Source

Fix SetMousePosition() for SDL (#3580)

pull/3582/head
ubkp 1 year ago
committed by GitHub
parent
commit
1906f1eddf
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/platforms/rcore_desktop_sdl.c

+ 2
- 0
src/platforms/rcore_desktop_sdl.c View File

@ -941,6 +941,8 @@ int SetGamepadMappings(const char *mappings)
// Set mouse position XY
void SetMousePosition(int x, int y)
{
SDL_WarpMouseInWindow(platform.window, x, y);
CORE.Input.Mouse.currentPosition = (Vector2){ (float)x, (float)y };
CORE.Input.Mouse.previousPosition = CORE.Input.Mouse.currentPosition;
}

Loading…
Cancel
Save