master
Camilla Löwy ago%!(EXTRA string=7 years)
parent 8a8eefa0d8
commit a678665c49
  1. 2
      src/input.c

@ -1190,7 +1190,7 @@ GLFWAPI int glfwGetGamepadState(int jid, GLFWgamepadstate* state)
{ {
if (js->mapping->buttons[i].type == _GLFW_JOYSTICK_AXIS) if (js->mapping->buttons[i].type == _GLFW_JOYSTICK_AXIS)
{ {
if (fabs(js->axes[js->mapping->buttons[i].value]) > 0.5) if (fabsf(js->axes[js->mapping->buttons[i].value]) > 0.5f)
state->buttons[i] = GLFW_PRESS; state->buttons[i] = GLFW_PRESS;
} }
else if (js->mapping->buttons[i].type == _GLFW_JOYSTICK_HATBIT) else if (js->mapping->buttons[i].type == _GLFW_JOYSTICK_HATBIT)

Loading…
Cancel
Save