]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fixed compilation error with debounce_sym_g
authorAlex Ong <the.onga@gmail.com>
Sat, 26 Jan 2019 11:57:39 +0000 (22:57 +1100)
committerAlex Ong <the.onga@gmail.com>
Sat, 26 Jan 2019 11:57:39 +0000 (22:57 +1100)
quantum/debounce/debounce_sym_g.c

index 63bf2a64be0b6439067f65d1cdd7f3e88cc2fbcd..c8ab34e1a0cafd2a4969d1887aa308134c6ab7dd 100644 (file)
@@ -16,9 +16,9 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 Basic global debounce algorithm. Used in 99% of keyboards at time of implementation
 When no state changes have occured for DEBOUNCE milliseconds, we push the state.
 */
-#include "debounce.h"
 #include "matrix.h"
 #include "timer.h"
+#include "quantum.h"
 #ifndef DEBOUNCE
   #define DEBOUNCE 5
 #endif
@@ -51,7 +51,7 @@ void debounce(matrix_row_t raw[], matrix_row_t cooked[], uint8_t num_rows, bool
 }
 #endif
 
-bool debounce_active() {
+bool debounce_active(void) {
   return debouncing;
 }