mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
[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.
This commit is contained in:
parent
949cfd4632
commit
9583f9f589
1 changed files with 1 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
||||||
#include "haptic.h"
|
#include "haptic.h"
|
||||||
#include "process_haptic.h"
|
#include "process_haptic.h"
|
||||||
#include "quantum_keycodes.h"
|
#include "quantum_keycodes.h"
|
||||||
|
#include "action_tapping.h"
|
||||||
|
|
||||||
__attribute__((weak)) bool get_haptic_enabled_key(uint16_t keycode, keyrecord_t *record) {
|
__attribute__((weak)) bool get_haptic_enabled_key(uint16_t keycode, keyrecord_t *record) {
|
||||||
switch (keycode) {
|
switch (keycode) {
|
||||||
|
|
Loading…
Reference in a new issue