diff options
author | alex-ong <the.onga@gmail.com> | 2019-01-26 08:26:49 +0100 |
---|---|---|
committer | alex-ong <the.onga@gmail.com> | 2019-01-26 08:26:49 +0100 |
commit | 14ed96aa064323acb0f8ceecaee3516fb372a56c (patch) | |
tree | 94ef971fdf9e0f9b53ae9349e6167e2a9313664b /quantum/debounce | |
parent | 5b7fc758d7b0d0ef24bc2861c4b2ba6708fbd367 (diff) | |
download | qmk_firmware-14ed96aa064323acb0f8ceecaee3516fb372a56c.tar.gz qmk_firmware-14ed96aa064323acb0f8ceecaee3516fb372a56c.tar.xz |
Moved debouncing_time variable to inside #if debounce
Diffstat (limited to 'quantum/debounce')
-rw-r--r-- | quantum/debounce/debounce_sym_g.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/quantum/debounce/debounce_sym_g.c b/quantum/debounce/debounce_sym_g.c index 4a6996c73..e365cdf03 100644 --- a/quantum/debounce/debounce_sym_g.c +++ b/quantum/debounce/debounce_sym_g.c @@ -23,12 +23,11 @@ When no state changes have occured for DEBOUNCE milliseconds, we push the state. #define DEBOUNCE 5 #endif -static bool debouncing = false; -static uint16_t debouncing_time; - void debounce_init(uint8_t num_rows) {} +static bool debouncing = false; #if DEBOUNCE > 0 +static uint16_t debouncing_time; void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool changed) { if (changed) { |