diff options
author | Drashna Jaelre <drashna@live.com> | 2019-01-25 12:11:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-25 12:11:38 -0800 |
commit | 3542e573c8ee464f62fc5e9a0f618d3a244048c0 (patch) | |
tree | 17f82f7dc19925551d8737045eff0bfffc81aba1 /quantum/process_keycode/process_combo.h | |
parent | b4161136167556afd9a6073aa476846b90e3bfab (diff) | |
parent | 1950a145c7d7c14167c8192b850e6edbadf67dc7 (diff) | |
download | firmware-3542e573c8ee464f62fc5e9a0f618d3a244048c0.tar.gz firmware-3542e573c8ee464f62fc5e9a0f618d3a244048c0.tar.bz2 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.h | 1 |
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 uint8_t state; #endif uint16_t timer; + bool is_active; #ifdef COMBO_ALLOW_ACTION_KEYS keyrecord_t prev_record; #else |