diff options
Diffstat (limited to 'quantum/debounce')
| -rw-r--r-- | quantum/debounce/debounce_sym_g.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/debounce/debounce_sym_g.c b/quantum/debounce/debounce_sym_g.c index e365cdf03..63bf2a64b 100644 --- a/quantum/debounce/debounce_sym_g.c +++ b/quantum/debounce/debounce_sym_g.c | |||
| @@ -45,7 +45,7 @@ void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool | |||
| 45 | #else //no debouncing. | 45 | #else //no debouncing. |
| 46 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed) | 46 | void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed) |
| 47 | { | 47 | { |
| 48 | for (int i = 0; i < MATRIX_ROWS; i++) { | 48 | for (int i = 0; i < num_rows; i++) { |
| 49 | cooked[i] = raw[i]; | 49 | cooked[i] = raw[i]; |
| 50 | } | 50 | } |
| 51 | } | 51 | } |
