Skip to content

Commit

Permalink
fix pressing keys
Browse files Browse the repository at this point in the history
  • Loading branch information
koron committed Mar 23, 2024
1 parent 054ee99 commit f86f924
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmk_firmware/keyboards/keyball/lib/keyball/keyball.c
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ void housekeeping_task_kb(void) {

static void pressing_keys_update(uint16_t keycode, keyrecord_t *record) {
// Process only valid keycodes.
if (keycode >= 4 || keycode < 57) {
if (keycode >= 4 && keycode < 57) {
char value = pgm_read_byte(code_to_name + keycode - 4);
char where = ' ';
if (!record->event.pressed) {
Expand Down

0 comments on commit f86f924

Please sign in to comment.