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 Florian Didron
parent 922984f981
commit 5f03514246

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