Skip to content

Commit

Permalink
[Bug][Keyboard] Fix key display on Corne OLED (qmk#21044)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored and coquizen committed Jun 22, 2023
1 parent f33c442 commit c499bea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboards/crkbd/crkbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static void set_keylog(uint16_t keycode, keyrecord_t *record) {
}

// update keylog
key_name = code_to_name[keycode];
key_name = pgm_read_byte(&code_to_name[keycode]);
last_row = record->event.key.row;
last_col = record->event.key.col;
}
Expand Down

0 comments on commit c499bea

Please sign in to comment.