Browse Source

[Bug][Keyboard] Fix key display on Corne OLED (#21044)

pull/21281/head
Drashna Jaelre 11 months ago
committed by GitHub
parent
commit
ed69d78f27
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      keyboards/crkbd/crkbd.c

+ 1
- 1
keyboards/crkbd/crkbd.c View File

@ -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;
}


Loading…
Cancel
Save