Fixing matrix_scan so it properly returns changed status

This commit is contained in:
Ryan Caltabiano 2019-05-26 07:37:40 -05:00 committed by Drashna Jaelre
parent 70a7b84dab
commit 6d6646de04
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}