summary refs log tree commit diff
path: root/quantum/action_tapping.c
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2022-03-10 05:43:12 +1100
committerGitHub <noreply@github.com>2022-03-10 05:43:12 +1100
commitedd1f33013084a79cffcfafafe7c2cbd381d6979 (patch)
tree3b07dce039527363b798805e55311ff286a6ecc6 /quantum/action_tapping.c
parent77180a6649bbf9f54a515acafe1cbe688f51a519 (diff)
Missed some erroneous prints. (#16597)
Diffstat (limited to 'quantum/action_tapping.c')
-rw-r--r--quantum/action_tapping.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/quantum/action_tapping.c b/quantum/action_tapping.c
index 6f8b4f8c56..e436619428 100644
--- a/quantum/action_tapping.c
+++ b/quantum/action_tapping.c
@@ -1,10 +1,5 @@
 #include <stdint.h>
 #include <stdbool.h>
-#include "action.h"
-#include "action_layer.h"
-#include "action_tapping.h"
-#include "keycode.h"
-#include "timer.h"
 
 #ifdef DEBUG_ACTION
 #    include "debug.h"
@@ -12,6 +7,12 @@
 #    include "nodebug.h"
 #endif
 
+#include "action.h"
+#include "action_layer.h"
+#include "action_tapping.h"
+#include "keycode.h"
+#include "timer.h"
+
 #ifndef NO_ACTION_TAPPING
 
 #    define IS_TAPPING() !IS_NOEVENT(tapping_key.event)