~ruther/qmk_firmware

c05d3eb365c8a3805c26f49a9abc7e4332d59155 — Mewp 3 years ago ffebc04
[Keyboard] Fix suspend issues on ergodox_ez. (#15300)

Co-authored-by: Mewp <git@mewp.pl>
1 files changed, 1 insertions(+), 1 deletions(-)

M keyboards/ergodox_ez/matrix.c
M keyboards/ergodox_ez/matrix.c => keyboards/ergodox_ez/matrix.c +1 -1
@@ 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;