summaryrefslogtreecommitdiffstats
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorclimbalima <climbalima@gmail.com>2016-11-16 19:28:30 -0500
committerclimbalima <climbalima@gmail.com>2016-11-16 19:28:30 -0500
commit668c7397023ad5c9d338b2165699af453f84af0a (patch)
treebfe732d0996226761f19bc4636ed062d6f302a1f /tmk_core/common/command.c
parent5cac51a773bef7fc8064390ac3ee499121a9611d (diff)
parent72e78a017fceb80cd43f014cf38218e845623f1c (diff)
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
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 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;