diff options
author | tmk <hasu@tmk-kbd.com> | 2015-09-20 10:51:30 +0900 |
---|---|---|
committer | tmk <hasu@tmk-kbd.com> | 2015-09-20 10:51:30 +0900 |
commit | e8a4a63ec45cf5052d8a054182ab83fdbafc3ff6 (patch) | |
tree | 37b6f4cbab6d96b516eefa3757d9442661d26a72 /tmk_core | |
parent | bf3d4b3c06a0f379ce5f1112b5033faf1a69aeb6 (diff) |
core: Fix message print of debug command
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/command.c | 4 |
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; |