qmk_userspace/users/t4corun/features/tapping.c
Victor 0344373690
Bug fixing
- forgot to put quotes in the tapping include
- REmoved some boards to compile
2024-05-24 00:18:47 -05:00

12 lines
No EOL
269 B
C

#include "tapping.h"
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
uint16_t get_tapping_term(uint16_t keycode, keyrecord_t *record) {
switch (keycode) {
case NAV:
return TAPPING_TERM - 40;
default:
return TAPPING_TERM;
}
}