diff options
author | xyverz <xyverz@gmail.com> | 2016-11-16 22:36:36 -0800 |
---|---|---|
committer | xyverz <xyverz@gmail.com> | 2016-11-16 22:36:36 -0800 |
commit | b493f6a4ed14e74c268ae3d7a07577591fe71cc7 (patch) | |
tree | 0da986aa45733b08c6b8c379658abd5e0a1fb8a7 /tmk_core | |
parent | 8dd422ffe1a84416dd4a8d38878979f5b7bbd51b (diff) | |
parent | c38b3e3be93a8b4f520212117b6498a288d67751 (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index f3e1bf6234..5f29bc0b4e 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c @@ -379,11 +379,11 @@ static bool command_common(uint8_t code) debug_enable = !debug_enable; if (debug_enable) { print("\ndebug: on\n"); - debug_matrix = true; - debug_keyboard = true; - debug_mouse = true; } else { print("\ndebug: off\n"); + debug_matrix = false; + debug_keyboard = false; + debug_mouse = false; } break; |