changed -1 to 0 can't have negative unsigned ints 🤔

master
Nick Choi 2017-05-25 16:29:57 -04:00
parent aeb3a34636
commit 7c8b166cce
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ typedef struct
#define ACTION_TAP_DANCE_FN_ADVANCED(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset) { \
.fn = { user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset }, \
.user_data = NULL, \
.custom_tapping_term = -1, \
.custom_tapping_term = 0, \
}
#define ACTION_TAP_DANCE_FN_ADVANCED_TIME(user_fn_on_each_tap, user_fn_on_dance_finished, user_fn_on_dance_reset, tap_specific_tapping_term) { \