diff options
author | QMK Bot <hello@qmk.fm> | 2022-01-11 01:10:03 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-01-11 01:10:03 +0000 |
commit | 4b9f73d32ea404d0ff01b5648aeb7814abdf44db (patch) | |
tree | 0ff638544df6b1d937ade191196ef625ec8dd925 /keyboards | |
parent | a760168722365ec7ec1e4a428f3dd63b4ac91be9 (diff) | |
parent | c05d3eb365c8a3805c26f49a9abc7e4332d59155 (diff) | |
download | qmk_firmware-4b9f73d32ea404d0ff01b5648aeb7814abdf44db.tar.gz qmk_firmware-4b9f73d32ea404d0ff01b5648aeb7814abdf44db.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/ergodox_ez/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/ergodox_ez/matrix.c b/keyboards/ergodox_ez/matrix.c index c091b6eb97..e84a5e2bd3 100644 --- a/keyboards/ergodox_ez/matrix.c +++ b/keyboards/ergodox_ez/matrix.c @@ -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; |