From 6caefe9649d88673719e969502d220c5e9dcd124 Mon Sep 17 00:00:00 2001 From: tmk Date: Fri, 23 Nov 2012 12:33:42 +0900 Subject: Fixes from Tranquilite@GH. - Fix keyboard_task() when matrix column size > 16 - Add clear_keyboard() in NKRO command to avoid stucking keys. - Fix function name in print.c. --- common/command.c | 1 + 1 file changed, 1 insertion(+) (limited to 'common/command.c') diff --git a/common/command.c b/common/command.c index a06e6a00d1..5cdd168d46 100644 --- a/common/command.c +++ b/common/command.c @@ -234,6 +234,7 @@ static bool command_common(uint8_t code) break; #ifdef NKRO_ENABLE case KC_N: + clear_keyboard(); //Prevents stuck keys. keyboard_nkro = !keyboard_nkro; if (keyboard_nkro) print("NKRO: enabled\n"); -- cgit v1.2.3