Skip to content

Commit

Permalink
Missed some erroneous prints. (qmk#16597)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzarc authored and waffle87 committed Mar 23, 2022
1 parent faaeb23 commit 56f269c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions quantum/action_layer.c
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
#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"
#else
# 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;
Expand Down
11 changes: 6 additions & 5 deletions quantum/action_tapping.c
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
#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"
#else
# 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)
Expand Down

0 comments on commit 56f269c

Please sign in to comment.