From 169807b65781767bbb5aeb27d2c9b74d97b522c4 Mon Sep 17 00:00:00 2001 From: emexSW Date: Sun, 12 Oct 2025 19:38:44 +0200 Subject: [PATCH] fixed double printing in the terminal prompt --- utils/terminal/terminal.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/utils/terminal/terminal.cpp b/utils/terminal/terminal.cpp index 1bb8d371..745c1894 100644 --- a/utils/terminal/terminal.cpp +++ b/utils/terminal/terminal.cpp @@ -86,9 +86,6 @@ void Terminal::run_command(){ const char* check = fullcmd; while (*check == ' ' || *check == '\t') check++; if (*check == '\0') { - put_char('\r'); - put_char('\n'); - put_string("> "); prompt_length = 2; draw_cursor(); flush(dctx);