diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-11-21 19:18:47 -0500 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2016-11-21 19:18:47 -0500 |
commit | 27ebacb15d39046713bd87e06c1157b1ffab6aaf (patch) | |
tree | 5a60417af07d3ff8798e371db210dd32ef10d332 /tmk_core | |
parent | c1037b1dc060d14a09a59f697fefe2b5b91bf373 (diff) | |
parent | 3b990c08dcc0e57875e9220a5e6371f60679c7ae (diff) |
merging lets_split
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; |