Fixing matrix_scan so it properly returns changed status (#63)

This commit is contained in:
Drashna Jaelre
2019-06-04 01:57:15 -07:00
committed by Florian Didron
parent bb71ba4b00
commit a92ab87f98
2 changed files with 3 additions and 2 deletions

View File

@@ -24,4 +24,5 @@
05-16-2019 - Add RGB Light Effect Range functionality
05-26-2019 - Update templates to use proper debounce define
05-26-2019 - Add Solus support for Linux install script
05-29-2019 - Fix TO() and DF() calling layer_state_set_[kb,user] twice (qmk#6003)
05-29-2019 - Fix TO() and DF() calling layer_state_set_[kb,user] twice (qmk#6003)
05-29-2019 - Fixing matrix_scan so it properly returns changed status

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