input: removed i_input_set definition
authorLukas Krickl <lukas@krickl.dev>
Mon, 2 Mar 2026 04:02:59 +0000 (05:02 +0100)
committerLukas Krickl <lukas@krickl.dev>
Mon, 2 Mar 2026 04:02:59 +0000 (05:02 +0100)
src/i_input.h

index 90d68b9481761b02c45938403a1646a41238de17..afa574aa4241d41240e9fd14028d97d1f62e6194 100644 (file)
@@ -66,16 +66,6 @@ extern struct i_input_map i_input_map;
 
 void i_input_init(void);
 
-/* sets an input to held
- * the scancode and modifiers have to match
- * if no event map is present the event is dropped
- * This should be called by the platforms event polling function 
- * to pass events as inputs to the engine
- * should be called by p_poll_events
- */
-void i_input_set(u16 scan_code, lrts_bool mod_shift, lrts_bool mod_alt, 
-               lrts_bool mod_ctrl, lrts_bool mod_super, lrts_bool key_state);
-
 
 /* updates input history by shifting pressed bitfield over by 1 and oring it with the held state */
 void i_input_update(void);