From 567d384b698151e287e31140709c93f1b92e6db4 Mon Sep 17 00:00:00 2001 From: omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Tue, 13 Aug 2024 20:29:27 +1000 Subject: loading joints and animations --- src/systems/input.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/systems/input.c') diff --git a/src/systems/input.c b/src/systems/input.c index 152b349..c3af96a 100644 --- a/src/systems/input.c +++ b/src/systems/input.c @@ -7,9 +7,9 @@ #include "keys.h" #include "log.h" -static Input_State *g_input; // Use a global to simplify caller code +static Input_State* g_input; // Use a global to simplify caller code -bool Input_Init(Input_State *input, GLFWwindow *window) { +bool Input_Init(Input_State* input, GLFWwindow* window) { INFO("Input init"); memset(input, 0, sizeof(Input_State)); @@ -30,9 +30,9 @@ bool Input_Init(Input_State *input, GLFWwindow *window) { return true; } -void Input_Shutdown(Input_State *input) {} +void Input_Shutdown(Input_State* input) {} -void Input_Update(Input_State *input) { +void Input_Update(Input_State* input) { glfwPollEvents(); // --- update keyboard input -- cgit v1.2.3-70-g09d2