aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--keyboards/zen/matrix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/zen/matrix.c b/keyboards/zen/matrix.c
index 6e274d3ba..34655237b 100644
--- a/keyboards/zen/matrix.c
+++ b/keyboards/zen/matrix.c
@@ -133,7 +133,7 @@ void matrix_init(void)
133 matrix_debouncing[i] = 0; 133 matrix_debouncing[i] = 0;
134 } 134 }
135 135
136 136 matrix_init_quantum();
137} 137}
138 138
139uint8_t _matrix_scan(void) 139uint8_t _matrix_scan(void)
@@ -264,6 +264,7 @@ uint8_t matrix_scan(void)
264 TXLED0; 264 TXLED0;
265 error_count = 0; 265 error_count = 0;
266 } 266 }
267 matrix_scan_quantum();
267 return ret; 268 return ret;
268} 269}
269 270