From: tmk Date: Sun, 20 Sep 2015 01:51:30 +0000 (+0900) Subject: core: Fix message print of debug command X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;ds=sidebyside;h=e8a4a63ec45cf5052d8a054182ab83fdbafc3ff6;p=max%2Ftmk_keyboard.git core: Fix message print of debug command --- 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;