summaryrefslogtreecommitdiff
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index 1b6808be0e..a53cac6148 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -228,13 +228,13 @@ static bool command_common(uint8_t code)
break;
case KC_D:
if (debug_enable) {
- print("\ndebug: on\n");
+ print("\ndebug: off\n");
debug_matrix = false;
debug_keyboard = false;
debug_mouse = false;
debug_enable = false;
} else {
- print("\ndebug: off\n");
+ print("\ndebug: on\n");
debug_enable = true;
}
break;