diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 23:15:22 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-07-26 23:15:22 +1000 |
commit | 2e2c57a8c04575eec164279a49947cfdba250853 (patch) | |
tree | b5d20aa256de40ebd9bad7c59ab1e8ebb1c47b52 /src/systems/input.c | |
parent | f5e5a6fdf58f3135f3211135bfbcb6e70630309f (diff) |
scenes and pbr cleanup to handle missing texture of param
Diffstat (limited to 'src/systems/input.c')
-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" |