diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-11-16 14:41:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-16 14:41:10 -0500 |
commit | 7541122cade1b49a2e236bef9332ac815fd3177c (patch) | |
tree | cd5dba7aa1ad3960ef7419456470d97cb101ce3f /tmk_core/common | |
parent | 631b8999a737ec73610f8b569b1f775cadf08172 (diff) | |
parent | 1803dbc6d532ce8a246aa87a281d07dd632ef443 (diff) |
Merge pull request #860 from IBNobody/master
Improved Quantum Matrix
Diffstat (limited to 'tmk_core/common')
-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; |