Browse Source

Fix the process_record_kb weak function too. h/t @fauxpark.

refactor_process_record_kb_user
skullY 4 years ago
parent
commit
ff49927703
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      quantum/quantum.c

+ 1
- 1
quantum/quantum.c View File

@ -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…
Cancel
Save