diff options
Diffstat (limited to 'src/systems')
-rw-r--r-- | src/systems/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/input.c b/src/systems/input.c index b5cdcdb..152b349 100644 --- a/src/systems/input.c +++ b/src/systems/input.c @@ -33,7 +33,7 @@ bool Input_Init(Input_State *input, GLFWwindow *window) { void Input_Shutdown(Input_State *input) {} void Input_Update(Input_State *input) { - // glfwPollEvents(); + glfwPollEvents(); // --- update keyboard input // if we go from un-pressed -> pressed, set as "just pressed" |