summaryrefslogtreecommitdiff
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorJack Humbert2016-11-16 14:41:10 -0500
committerGitHub2016-11-16 14:41:10 -0500
commit7541122cade1b49a2e236bef9332ac815fd3177c (patch)
treecd5dba7aa1ad3960ef7419456470d97cb101ce3f /tmk_core/common/command.c
parent631b8999a737ec73610f8b569b1f775cadf08172 (diff)
parent1803dbc6d532ce8a246aa87a281d07dd632ef443 (diff)
Merge pull request #860 from IBNobody/master
Improved Quantum Matrix
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index f3e1bf623..5f29bc0b4 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;