diff options
Diffstat (limited to 'quantum/debounce.h')
| -rw-r--r-- | quantum/debounce.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/quantum/debounce.h b/quantum/debounce.h index cea1f2b526..e26106cd3b 100644 --- a/quantum/debounce.h +++ b/quantum/debounce.h @@ -9,13 +9,10 @@ * * @param raw The current key state * @param cooked The debounced key state - * @param num_rows Number of rows to debounce * @param changed True if raw has changed since the last call * @return true Cooked has new keychanges after debouncing * @return false Cooked is the same as before */ -bool debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed); +bool debounce(matrix_row_t raw[], matrix_row_t cooked[], bool changed); -void debounce_init(uint8_t num_rows); - -void debounce_free(void); +void debounce_init(void); |