aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorGravatar Priyadi Iman Nurcahyo <priyadi@priyadi.net>2016-11-26 13:31:17 +0700
committerGravatar Priyadi Iman Nurcahyo <priyadi@priyadi.net>2016-11-26 13:31:17 +0700
commitb5511b9a8aa3827279fc132ecf3e5dd9c9c07668 (patch)
treee902e8f6dfc67272a98bfbbba0f77b7830bb8604 /tmk_core/common/command.c
parent4b0d16cd7bdcd41cffb17a7b6eed7cb44beaef34 (diff)
parentbf23ac96f62be1cb36d414e76599523af3caf00f (diff)
downloadqmk_firmware-b5511b9a8aa3827279fc132ecf3e5dd9c9c07668.tar.gz
Merge branch 'master' into promethium
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;