~ruther/qmk_firmware

7cb8d3c7a7fe4de4629af21a92f5415cdfdffa0c — Alex Ong 6 years ago b5b1195
Bug fix - was using MATRIX_ROWS instead of num_rows
1 files changed, 1 insertions(+), 1 deletions(-)

M quantum/debounce/debounce_sym_g.c
M quantum/debounce/debounce_sym_g.c => quantum/debounce/debounce_sym_g.c +1 -1
@@ 45,7 45,7 @@ void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool 
#else //no debouncing.
void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed)
{
  for (int i = 0; i < MATRIX_ROWS; i++) {
  for (int i = 0; i < num_rows; i++) {
    cooked[i] = raw[i];
  }
}