浏览代码

Missed some erroneous prints. (#16597)

Nick Brassel 3 年之前
父节点
当前提交
edd1f33013
共有 2 个文件被更改,包括 12 次插入10 次删除
  1. 6 5
      quantum/action_layer.c
  2. 6 5
      quantum/action_tapping.c

+ 6 - 5
quantum/action_layer.c

@@ -1,10 +1,5 @@
 #include <limits.h>
 #include <stdint.h>
-#include "keyboard.h"
-#include "keymap.h"
-#include "action.h"
-#include "util.h"
-#include "action_layer.h"
 
 #ifdef DEBUG_ACTION
 #    include "debug.h"
@@ -12,6 +7,12 @@
 #    include "nodebug.h"
 #endif
 
+#include "keyboard.h"
+#include "keymap.h"
+#include "action.h"
+#include "util.h"
+#include "action_layer.h"
+
 /** \brief Default Layer State
  */
 layer_state_t default_layer_state = 0;

+ 6 - 5
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)