From e8a4a63ec45cf5052d8a054182ab83fdbafc3ff6 Mon Sep 17 00:00:00 2001 From: tmk Date: Sun, 20 Sep 2015 10:51:30 +0900 Subject: [PATCH] core: Fix message print of debug command --- tmk_core/common/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index 1b6808be..a53cac61 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; -- 2.39.3