aboutsummaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/wasdat/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/wasdat/matrix.c b/keyboards/wasdat/matrix.c
index b481e5394..04d221971 100644
--- a/keyboards/wasdat/matrix.c
+++ b/keyboards/wasdat/matrix.c
@@ -183,7 +183,7 @@ static void unselect_row(uint8_t row)
183static void unselect_rows(void) 183static void unselect_rows(void)
184{ 184{
185 for(uint8_t x = 0; x < MATRIX_ROWS; x++) { 185 for(uint8_t x = 0; x < MATRIX_ROWS; x++) {
186 setPinInput(row_pins[x]); 186 setPinInputHigh(row_pins[x]);
187 } 187 }
188} 188}
189 189
@@ -480,5 +480,5 @@ uint8_t matrix_scan(void)
480 debounce(raw_matrix, matrix, MATRIX_ROWS, changed); 480 debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
481 481
482 matrix_scan_quantum(); 482 matrix_scan_quantum();
483 return 1; 483 return (uint8_t)changed;
484} 484}