]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - quantum/debounce/debounce_eager_pk.c
Fix compile error in debounce_eager_pk
[qmk_firmware.git] / quantum / debounce / debounce_eager_pk.c
index af11362efc918b1f48d63f508d47fa693dcf5d38..b8ad09cee30e96f957a57469ed98380c28bddf20 100644 (file)
@@ -18,9 +18,9 @@ After pressing a key, it immediately changes state, and sets a counter.
 No further inputs are accepted until DEBOUNCE milliseconds have occurred.
 */
 
-#include "debounce.h"
 #include "matrix.h"
 #include "timer.h"
+#include "quantum.h"
 #include <stdlib.h>
 
 #ifndef DEBOUNCE
@@ -114,7 +114,7 @@ void transfer_matrix_values(matrix_row_t raw[], matrix_row_t cooked[], uint8_t n
   }  
 }
 
-bool debounce_active()
+bool debounce_active(void)
 {
   return true;
 }