mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-11 02:59:09 +00:00
Added default case to process_record_user
I tried using process_record_user and if I had to add the default case for it to compile.
This commit is contained in:
parent
cca3dcc5ec
commit
eab41f7b38
1 changed files with 2 additions and 0 deletions
|
@ -60,6 +60,8 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
||||||
PLAY_NOTE_ARRAY(tone_qwerty);
|
PLAY_NOTE_ARRAY(tone_qwerty);
|
||||||
}
|
}
|
||||||
return true; // Let QMK send the enter press/release events
|
return true; // Let QMK send the enter press/release events
|
||||||
|
default:
|
||||||
|
return true; // Process all other keycodes normally
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in a new issue