From ff49927703421ac804848fbe933e2856f786dd60 Mon Sep 17 00:00:00 2001 From: skullY Date: Sat, 29 Feb 2020 10:01:26 -0800 Subject: [PATCH] Fix the process_record_kb weak function too. h/t @fauxpark. --- quantum/quantum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/quantum.c b/quantum/quantum.c index 44de941adf..d592f3cd14 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -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; }