add stubs to other platforms

This commit is contained in:
Nikita Leonidov 2020-04-16 20:16:46 -04:00
parent 6db3f00ffb
commit d436f7ae77
2 changed files with 10 additions and 0 deletions

View File

@ -485,3 +485,8 @@ void _glfwPlatformUpdateGamepadGUID(char* guid)
} }
} }
int _glfwPlatformSetJoystickRumble(_GLFWjoystick* js, float slowMotorSpeed, float fastMotorSpeed)
{
return GLFW_FALSE;
}

View File

@ -42,3 +42,8 @@ void _glfwPlatformUpdateGamepadGUID(char* guid)
{ {
} }
int _glfwPlatformSetJoystickRumble(_GLFWjoystick* js, float slowMotorSpeed, float fastMotorSpeed)
{
return GLFW_FALSE;
}