mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 10:39:09 +00:00
core: Fix message print of debug command
This commit is contained in:
parent
bf3d4b3c06
commit
e8a4a63ec4
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue