diff options
| author | Drashna Jaelre | 2025-01-25 04:11:38 +0100 |
|---|---|---|
| committer | GitHub | 2025-01-25 04:11:38 +0100 |
| commit | 6a9ccae18d6a9cd39dbbd5c0fb9aa26f4742c2f7 (patch) | |
| tree | 11b3e61e57222f7f28bdc024127d5f084f6298c8 /quantum | |
| parent | 5650894c2047a0cf5e77456ba7e62763dd8ba04f (diff) | |
Fix missing wait.h include in Dip Switch Map (#24863)
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/dip_switch.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/dip_switch.c b/quantum/dip_switch.c index 69cf665291..65ae21175b 100644 --- a/quantum/dip_switch.c +++ b/quantum/dip_switch.c @@ -64,6 +64,7 @@ __attribute__((weak)) bool dip_switch_update_mask_kb(uint32_t state) { #ifdef DIP_SWITCH_MAP_ENABLE # include "keymap_introspection.h" # include "action.h" +# include "wait.h" # ifndef DIP_SWITCH_MAP_KEY_DELAY # define DIP_SWITCH_MAP_KEY_DELAY TAP_CODE_DELAY |