From bb06d3b44e103d8cb29a999b23055c828cb140c7 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sun, 26 May 2024 12:24:11 -0400 Subject: [PATCH] Don't poll input (we need to gut raylib's and switch over to sokol) --- code/sectr/engine/update.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/sectr/engine/update.odin b/code/sectr/engine/update.odin index e626270..da31aae 100644 --- a/code/sectr/engine/update.odin +++ b/code/sectr/engine/update.odin @@ -79,10 +79,10 @@ update :: proc( delta_time : f64 ) -> b32 } state.input, state.input_prev = swap( state.input, state.input_prev ) - poll_input( state.input_prev, state.input ) + // poll_input( state.input_prev, state.input ) debug_actions : DebugActions = {} - poll_debug_actions( & debug_actions, state.input ) + // poll_debug_actions( & debug_actions, state.input ) // Saving & Loading {