ソースを参照

core: Fix message print of debug command

tags/v2.9
tmk 8年前
コミット
e8a4a63ec4
1個のファイルの変更2行の追加2行の削除
  1. 2
    2
      tmk_core/common/command.c

+ 2
- 2
tmk_core/common/command.c ファイルの表示

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

読み込み中…
キャンセル
保存