Don't poll input (we need to gut raylib's and switch over to sokol)

This commit is contained in:
Edward R. Gonzalez 2024-05-26 12:24:11 -04:00
parent 0d2c5e478b
commit bb06d3b44e

View File

@ -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
{