File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ static bool process_tapping(keyrecord_t *record);
30
30
static bool waiting_buffer_enq (keyrecord_t record );
31
31
static void waiting_buffer_clear (void );
32
32
static bool waiting_buffer_typed (keyevent_t event );
33
- static bool waiting_buffer_has_anykey_pressed (void );
34
33
static void waiting_buffer_scan_tap (void );
35
34
static void debug_tapping_key (void );
36
35
static void debug_waiting_buffer (void );
@@ -324,14 +323,6 @@ bool waiting_buffer_typed(keyevent_t event)
324
323
return false;
325
324
}
326
325
327
- bool waiting_buffer_has_anykey_pressed (void )
328
- {
329
- for (uint8_t i = waiting_buffer_tail ; i != waiting_buffer_head ; i = (i + 1 ) % WAITING_BUFFER_SIZE ) {
330
- if (waiting_buffer [i ].event .pressed ) return true;
331
- }
332
- return false;
333
- }
334
-
335
326
/* scan buffer for tapping */
336
327
void waiting_buffer_scan_tap (void )
337
328
{
You can’t perform that action at this time.
0 commit comments