Fix CUSTOM_MATRIX lite matrix_scan return code (#7908)

This commit is contained in:
Joel Challis 2020-01-15 04:51:43 +00:00 committed by fauxpark
parent 48cac9e3c8
commit 2081c5e40e
1 changed files with 1 additions and 1 deletions

View File

@ -103,5 +103,5 @@ __attribute__((weak)) uint8_t matrix_scan(void) {
debounce(raw_matrix, matrix, MATRIX_ROWS, changed);
matrix_scan_quantum();
return 1;
return changed;
}