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

This commit is contained in:
skullY 2020-02-29 10:01:26 -08:00
parent c4aa18363e
commit ff49927703

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; }