diff options
author | Kaleb Elwert <belak@coded.io> | 2018-01-10 13:15:06 -0800 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-01-12 13:23:38 -0500 |
commit | 3be81a2dafe13a9c2a591528db1b3973de923167 (patch) | |
tree | f39faeef36005e1152ad1f7a652d1565dfda1b1b /keyboards/whitefox | |
parent | 586a5e8d1da98c98cc3f14639ad820c2cd417860 (diff) |
Fix call to memset for various keyboards
Diffstat (limited to 'keyboards/whitefox')
-rw-r--r-- | keyboards/whitefox/matrix.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/keyboards/whitefox/matrix.c b/keyboards/whitefox/matrix.c index ff334c03ae..c6f2c8d621 100644 --- a/keyboards/whitefox/matrix.c +++ b/keyboards/whitefox/matrix.c @@ -47,8 +47,9 @@ void matrix_init(void) palSetPadMode(GPIOC, 10, PAL_MODE_OUTPUT_PUSHPULL); palSetPadMode(GPIOC, 11, PAL_MODE_OUTPUT_PUSHPULL); - memset(matrix, 0, MATRIX_ROWS); - memset(matrix_debouncing, 0, MATRIX_ROWS); + memset(matrix, 0, MATRIX_ROWS * sizeof(matrix_row_t)); + memset(matrix_debouncing, 0, MATRIX_ROWS * sizeof(matrix_row_t)); + matrix_init_quantum(); } |