Procházet zdrojové kódy

core: Fix message print of debug command

tags/v2.9
tmk před 8 roky
rodič
revize
e8a4a63ec4
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2
    2
      tmk_core/common/command.c

+ 2
- 2
tmk_core/common/command.c Zobrazit soubor

@@ -228,13 +228,13 @@ static bool command_common(uint8_t code)
break;
case KC_D:
if (debug_enable) {
print("\ndebug: on\n");
print("\ndebug: off\n");
debug_matrix = false;
debug_keyboard = false;
debug_mouse = false;
debug_enable = false;
} else {
print("\ndebug: off\n");
print("\ndebug: on\n");
debug_enable = true;
}
break;

Načítá se…
Zrušit
Uložit