forked from mirrors/qmk_firmware
Fix the process_record_kb weak function too. h/t @fauxpark.
This commit is contained in:
parent
c4aa18363e
commit
ff49927703
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ void tap_code16(uint16_t code) {
|
|||
|
||||
__attribute__((weak)) bool process_action_kb(keyrecord_t *record) { return true; }
|
||||
|
||||
__attribute__((weak)) bool process_record_kb(uint16_t keycode, keyrecord_t *record) { return process_record_user(keycode, record); }
|
||||
__attribute__((weak)) bool process_record_kb(uint16_t keycode, keyrecord_t *record) { return true; }
|
||||
|
||||
__attribute__((weak)) bool process_record_user(uint16_t keycode, keyrecord_t *record) { return true; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue