summaryrefslogtreecommitdiffstats
path: root/tmk_core
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-11-22 01:18:47 +0100
committerJack Humbert <jack.humb@gmail.com>2016-11-22 01:18:47 +0100
commit27ebacb15d39046713bd87e06c1157b1ffab6aaf (patch)
tree5a60417af07d3ff8798e371db210dd32ef10d332 /tmk_core
parentc1037b1dc060d14a09a59f697fefe2b5b91bf373 (diff)
parent3b990c08dcc0e57875e9220a5e6371f60679c7ae (diff)
downloadqmk_firmware-27ebacb15d39046713bd87e06c1157b1ffab6aaf.tar.gz
qmk_firmware-27ebacb15d39046713bd87e06c1157b1ffab6aaf.tar.xz
merging lets_split
Diffstat (limited to 'tmk_core')
-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;