aboutsummaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_combo.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-01-25 12:11:38 -0800
committerGitHub <noreply@github.com>2019-01-25 12:11:38 -0800
commit3542e573c8ee464f62fc5e9a0f618d3a244048c0 (patch)
tree17f82f7dc19925551d8737045eff0bfffc81aba1 /quantum/process_keycode/process_combo.h
parentb4161136167556afd9a6073aa476846b90e3bfab (diff)
parent1950a145c7d7c14167c8192b850e6edbadf67dc7 (diff)
downloadqmk_firmware-3542e573c8ee464f62fc5e9a0f618d3a244048c0.tar.gz
qmk_firmware-3542e573c8ee464f62fc5e9a0f618d3a244048c0.zip
Fix process_combo which assign -1 to uint16_t (#3697)
Diffstat (limited to 'quantum/process_keycode/process_combo.h')
-rw-r--r--quantum/process_keycode/process_combo.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_combo.h b/quantum/process_keycode/process_combo.h
index a5dbd788a..a5787c9ed 100644
--- a/quantum/process_keycode/process_combo.h
+++ b/quantum/process_keycode/process_combo.h
@@ -33,6 +33,7 @@ typedef struct
33 uint8_t state; 33 uint8_t state;
34#endif 34#endif
35 uint16_t timer; 35 uint16_t timer;
36 bool is_active;
36#ifdef COMBO_ALLOW_ACTION_KEYS 37#ifdef COMBO_ALLOW_ACTION_KEYS
37 keyrecord_t prev_record; 38 keyrecord_t prev_record;
38#else 39#else