diff --git a/src/window.c b/src/window.c index ce260b32..f43d398e 100644 --- a/src/window.c +++ b/src/window.c @@ -157,8 +157,7 @@ void _glfwInputKey(_GLFWwindow* window, int key, int action) window->key[key] = GLFW_STICK; else { - keyrepeat = (window->key[key] == GLFW_PRESS) && - (action == GLFW_PRESS); + keyrepeat = (window->key[key] == GLFW_PRESS) && (action == GLFW_PRESS); window->key[key] = (char) action; }