aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/action.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/action.c')
-rw-r--r--tmk_core/common/action.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tmk_core/common/action.c b/tmk_core/common/action.c
index 44b19d368..bd6aeba4f 100644
--- a/tmk_core/common/action.c
+++ b/tmk_core/common/action.c
@@ -20,7 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
20#include "mousekey.h" 20#include "mousekey.h"
21#include "command.h" 21#include "command.h"
22#include "led.h" 22#include "led.h"
23#include "backlight.h"
24#include "action_layer.h" 23#include "action_layer.h"
25#include "action_tapping.h" 24#include "action_tapping.h"
26#include "action_macro.h" 25#include "action_macro.h"
@@ -28,6 +27,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
28#include "action.h" 27#include "action.h"
29#include "wait.h" 28#include "wait.h"
30 29
30#ifdef BACKLIGHT_ENABLE
31# include "backlight.h"
32#endif
33
31#ifdef DEBUG_ACTION 34#ifdef DEBUG_ACTION
32# include "debug.h" 35# include "debug.h"
33#else 36#else