commit ed69d78f27a384bca11f2d815224083120941580 parent 6e41377824a42487bb4a1d24fc95d7301477ca97 Author: Drashna Jaelre <drashna@live.com> Date: Thu, 25 May 2023 08:41:12 -0700 [Bug][Keyboard] Fix key display on Corne OLED (#21044) Diffstat:
| M | keyboards/crkbd/crkbd.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/keyboards/crkbd/crkbd.c b/keyboards/crkbd/crkbd.c @@ -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; }