Преглед изворни кода

Fix SetMousePosition() for SDL (#3580)

pull/3582/head
ubkp пре 1 година
committed by GitHub
родитељ
комит
1906f1eddf
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 2 додато и 0 уклоњено
  1. +2
    -0
      src/platforms/rcore_desktop_sdl.c

+ 2
- 0
src/platforms/rcore_desktop_sdl.c Прегледај датотеку

@ -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…
Откажи
Сачувај