mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-14 12:34:39 +00:00
Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
commit
4b9f73d32e
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ void matrix_init_custom(void) {
|
|||
// Reads and stores a row, returning
|
||||
// whether a change occurred.
|
||||
static inline bool store_raw_matrix_row(uint8_t index) {
|
||||
matrix_row_t temp = read_cols(index);
|
||||
matrix_row_t temp = 0x3F & read_cols(index);
|
||||
if (raw_matrix[index] != temp) {
|
||||
raw_matrix[index] = temp;
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue