diff options
author | Nick Choi <iinikchi@gmail.com> | 2017-05-25 16:29:57 -0400 |
---|---|---|
committer | Nick Choi <iinikchi@gmail.com> | 2017-05-25 16:29:57 -0400 |
commit | 7c8b166cce8bf5df058913acc07cd6505f83684a (patch) | |
tree | 24e3d9ed9c19537e43f7f44f60a7e674830cfbf4 /quantum | |
parent | aeb3a34636c614cd392cfc6268491a51a461df31 (diff) | |
download | qmk_firmware-7c8b166cce8bf5df058913acc07cd6505f83684a.tar.gz qmk_firmware-7c8b166cce8bf5df058913acc07cd6505f83684a.zip |
changed -1 to 0 can't have negative unsigned ints 🤔
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/process_keycode/process_tap_dance.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/process_keycode/process_tap_dance.h b/quantum/process_keycode/process_tap_dance.h index a020f7991e..ef05ebda24 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) { \ |