Skip to content

Commit

Permalink
[Bug][Keyboard] Fix key display on Corne OLED (#21044)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored May 25, 2023
1 parent 6e41377 commit ed69d78
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 ed69d78

Please sign in to comment.