summaryrefslogtreecommitdiffstats
path: root/quantum/process_keycode
diff options
context:
space:
mode:
authorNick Choi <iinikchi@gmail.com>2017-05-25 22:29:57 +0200
committerNick Choi <iinikchi@gmail.com>2017-05-25 22:29:57 +0200
commit7c8b166cce8bf5df058913acc07cd6505f83684a (patch)
tree24e3d9ed9c19537e43f7f44f60a7e674830cfbf4 /quantum/process_keycode
parentaeb3a34636c614cd392cfc6268491a51a461df31 (diff)
downloadqmk_firmware-7c8b166cce8bf5df058913acc07cd6505f83684a.tar.gz
qmk_firmware-7c8b166cce8bf5df058913acc07cd6505f83684a.tar.xz
changed -1 to 0 can't have negative unsigned ints 🤔
Diffstat (limited to 'quantum/process_keycode')
-rw-r--r--quantum/process_keycode/process_tap_dance.h2
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 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) { \