From: Nick Choi Date: Thu, 25 May 2017 20:29:57 +0000 (-0400) Subject: changed -1 to 0 can't have negative unsigned ints 🤔 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7c8b166cce8bf5df058913acc07cd6505f83684a;p=qmk_firmware.git changed -1 to 0 can't have negative unsigned ints 🤔 --- diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index a020f7991..ef05ebda2 100644 --- a/quantum/process_keycode/process_tap_dance.h +++ b/quantum/process_keycode/process_tap_dance.h @@ -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) { \