rcore_desktop_rgfw.c SetGamepadVibration added

This commit is contained in:
JupiterRider 2024-12-17 19:42:54 +01:00
parent edb2c107b3
commit 2040136e38

View file

@ -783,6 +783,12 @@ int SetGamepadMappings(const char *mappings)
return 0; return 0;
} }
// Set gamepad vibration
void SetGamepadVibration(int gamepad, float leftMotor, float rightMotor, float duration)
{
TRACELOG(LOG_WARNING, "GamepadSetVibration() not available on target platform");
}
// Set mouse position XY // Set mouse position XY
void SetMousePosition(int x, int y) void SetMousePosition(int x, int y)
{ {