diff options
author | Drashna Jaelre <drashna@live.com> | 2019-06-04 01:57:15 -0700 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2019-06-04 17:57:15 +0900 |
commit | a92ab87f9803eaad4624d588e3fa43e74cd3cb98 (patch) | |
tree | 3e1a7058ce7332c2c74c6d627ebfca51d18763a0 /quantum | |
parent | bb71ba4b00e596e69210f90ae4497dc259e0ce42 (diff) |
Fixing matrix_scan so it properly returns changed status (#63)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/matrix.c b/quantum/matrix.c index ca63f50f24..e222a30976 100644 --- a/quantum/matrix.c +++ b/quantum/matrix.c @@ -326,5 +326,5 @@ uint8_t matrix_scan(void) debounce(raw_matrix, matrix, MATRIX_ROWS, changed); matrix_scan_quantum(); - return 1; + return (uint8_t)changed; } |