From 12e79b6972ba575c030889b95caaa1f4ca040653 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Wed, 29 May 2019 11:55:38 -0700 Subject: [PATCH] Fixing matrix_scan so it properly returns changed status on Ergodox E --- keyboards/ergodox_ez/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index 6f604ae2b9..80a2d1d95b 100644 --- a/keyboards/ergodox_ez/matrix.c +++ b/keyboards/ergodox_ez/matrix.c @@ -188,7 +188,7 @@ uint8_t matrix_scan(void) { debounce(raw_matrix, matrix, MATRIX_ROWS, changed); matrix_scan_quantum(); - return 1; + return (uint8_t)changed; } bool matrix_is_modified(void) // deprecated and evidently not called.