aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authortmk <hasu@tmk-kbd.com>2015-09-20 10:51:30 +0900
committertmk <hasu@tmk-kbd.com>2015-09-20 10:51:30 +0900
commite8a4a63ec45cf5052d8a054182ab83fdbafc3ff6 (patch)
tree37b6f4cbab6d96b516eefa3757d9442661d26a72 /tmk_core/common/command.c
parentbf3d4b3c06a0f379ce5f1112b5033faf1a69aeb6 (diff)
downloadqmk_firmware-e8a4a63ec45cf5052d8a054182ab83fdbafc3ff6.tar.gz
qmk_firmware-e8a4a63ec45cf5052d8a054182ab83fdbafc3ff6.zip
core: Fix message print of debug command
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 1b6808be0..a53cac614 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -228,13 +228,13 @@ static bool command_common(uint8_t code)
228 break; 228 break;
229 case KC_D: 229 case KC_D:
230 if (debug_enable) { 230 if (debug_enable) {
231 print("\ndebug: on\n"); 231 print("\ndebug: off\n");
232 debug_matrix = false; 232 debug_matrix = false;
233 debug_keyboard = false; 233 debug_keyboard = false;
234 debug_mouse = false; 234 debug_mouse = false;
235 debug_enable = false; 235 debug_enable = false;
236 } else { 236 } else {
237 print("\ndebug: off\n"); 237 print("\ndebug: on\n");
238 debug_enable = true; 238 debug_enable = true;
239 } 239 }
240 break; 240 break;