We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5432d30 commit 1c85be1Copy full SHA for 1c85be1
library/lib/platforms/glfw/glfw_input.cpp
@@ -285,6 +285,7 @@ void GLFWInputManager::updateUnifiedControllerState(ControllerState* state)
285
state->buttons[brlsButton] |= glfwGetKey(this->window, key) != 0;
286
}
287
288
+ state->buttons[BUTTON_A] |= glfwGetKey(this->window, GLFW_KEY_KP_ENTER) != 0;
289
state->buttons[BUTTON_X] |= (glfwGetMouseButton(window, GLFW_MOUSE_BUTTON_MIDDLE) == GLFW_PRESS);
290
291
state->buttons[BUTTON_BACKSPACE] = glfwGetKey(this->window, GLFW_KEY_BACKSPACE);
0 commit comments