diff options
| author | alex-ong <the.onga@gmail.com> | 2019-01-27 00:10:14 +1100 |
|---|---|---|
| committer | alex-ong <the.onga@gmail.com> | 2019-01-27 00:10:14 +1100 |
| commit | 562c0d702a326488d79963969ef71f2a52664cdc (patch) | |
| tree | 458f17d86362d61007c37b4054b56b466a20f885 | |
| parent | 503e02db79c06f7893e6802eb1a2ab2850a931f1 (diff) | |
| download | qmk_firmware-562c0d702a326488d79963969ef71f2a52664cdc.tar.gz qmk_firmware-562c0d702a326488d79963969ef71f2a52664cdc.zip | |
Fix compile error in debounce_eager_pk
| -rw-r--r-- | quantum/debounce/debounce_eager_pk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/debounce/debounce_eager_pk.c b/quantum/debounce/debounce_eager_pk.c index af11362ef..b8ad09cee 100644 --- a/quantum/debounce/debounce_eager_pk.c +++ b/quantum/debounce/debounce_eager_pk.c | |||
| @@ -18,9 +18,9 @@ After pressing a key, it immediately changes state, and sets a counter. | |||
| 18 | No further inputs are accepted until DEBOUNCE milliseconds have occurred. | 18 | No further inputs are accepted until DEBOUNCE milliseconds have occurred. |
| 19 | */ | 19 | */ |
| 20 | 20 | ||
| 21 | #include "debounce.h" | ||
| 22 | #include "matrix.h" | 21 | #include "matrix.h" |
| 23 | #include "timer.h" | 22 | #include "timer.h" |
| 23 | #include "quantum.h" | ||
| 24 | #include <stdlib.h> | 24 | #include <stdlib.h> |
| 25 | 25 | ||
| 26 | #ifndef DEBOUNCE | 26 | #ifndef DEBOUNCE |
| @@ -114,7 +114,7 @@ void transfer_matrix_values(matrix_row_t raw[], matrix_row_t cooked[], uint8_t n | |||
| 114 | } | 114 | } |
| 115 | } | 115 | } |
| 116 | 116 | ||
| 117 | bool debounce_active() | 117 | bool debounce_active(void) |
| 118 | { | 118 | { |
| 119 | return true; | 119 | return true; |
| 120 | } | 120 | } |
