소스 검색

Fix CUSTOM_MATRIX lite matrix_scan return code (#7908)

Joel Challis 5 년 전
부모
커밋
2081c5e40e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      quantum/matrix_common.c

+ 1 - 1
quantum/matrix_common.c

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