mirror of
https://github.com/glfw/glfw.git
synced 2024-11-23 02:25:10 +00:00
Cleanup
This commit is contained in:
parent
ae4ece840d
commit
c580949417
@ -481,7 +481,7 @@ void _glfwTerminateJoysticksNS(void)
|
|||||||
int _glfwPlatformJoystickPresent(int joy)
|
int _glfwPlatformJoystickPresent(int joy)
|
||||||
{
|
{
|
||||||
_GLFWjoydeviceNS* joystick = _glfw.ns_js.devices + joy;
|
_GLFWjoydeviceNS* joystick = _glfw.ns_js.devices + joy;
|
||||||
return joystick->present ? GLFW_TRUE : GLFW_FALSE;
|
return joystick->present;
|
||||||
}
|
}
|
||||||
|
|
||||||
const float* _glfwPlatformGetJoystickAxes(int joy, int* count)
|
const float* _glfwPlatformGetJoystickAxes(int joy, int* count)
|
||||||
@ -508,9 +508,9 @@ const unsigned char* _glfwPlatformGetJoystickButtons(int joy, int* count)
|
|||||||
const char* _glfwPlatformGetJoystickName(int joy)
|
const char* _glfwPlatformGetJoystickName(int joy)
|
||||||
{
|
{
|
||||||
_GLFWjoydeviceNS* joystick = _glfw.ns_js.devices + joy;
|
_GLFWjoydeviceNS* joystick = _glfw.ns_js.devices + joy;
|
||||||
if (joystick->present)
|
if (!joystick->present)
|
||||||
return joystick->name;
|
|
||||||
else
|
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
return joystick->name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user