From 9583f9f589ec4ecaafd3c8f9c709ce981dc684af Mon Sep 17 00:00:00 2001 From: Purdea Andrei Date: Mon, 30 Aug 2021 21:22:53 +0300 Subject: [PATCH] [Bug] Fix build error when enabling NO_HAPTIC_MOD (#14178) Without this build would fail, if a keyboard had haptic feedback enabled, TAPPING_TOGGLE was not overridden in a config.h, and if NO_HAPTIC_MOD was defined in config.h. --- quantum/process_keycode/process_haptic.c | 1 + 1 file changed, 1 insertion(+) diff --git a/quantum/process_keycode/process_haptic.c b/quantum/process_keycode/process_haptic.c index 29a4ffd10ae..64d455d0094 100644 --- a/quantum/process_keycode/process_haptic.c +++ b/quantum/process_keycode/process_haptic.c @@ -16,6 +16,7 @@ #include "haptic.h" #include "process_haptic.h" #include "quantum_keycodes.h" +#include "action_tapping.h" __attribute__((weak)) bool get_haptic_enabled_key(uint16_t keycode, keyrecord_t *record) { switch (keycode) {