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