summaryrefslogtreecommitdiffstats
path: root/keyboards/whitefox/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/whitefox/matrix.c')
-rw-r--r--keyboards/whitefox/matrix.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/keyboards/whitefox/matrix.c b/keyboards/whitefox/matrix.c
index 9202ab023..ff334c03a 100644
--- a/keyboards/whitefox/matrix.c
+++ b/keyboards/whitefox/matrix.c
@@ -49,6 +49,7 @@ void matrix_init(void)
memset(matrix, 0, MATRIX_ROWS);
memset(matrix_debouncing, 0, MATRIX_ROWS);
+ matrix_init_quantum();
}
uint8_t matrix_scan(void)
@@ -102,6 +103,7 @@ uint8_t matrix_scan(void)
}
debouncing = false;
}
+ matrix_scan_quantum();
return 1;
}