Explorar el Código

core: Fix message print of debug command

tags/v2.9
tmk hace 8 años
padre
commit
e8a4a63ec4
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      tmk_core/common/command.c

+ 2
- 2
tmk_core/common/command.c Ver fichero

@@ -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;

Cargando…
Cancelar
Guardar