diff --git a/src/core/bus.cpp b/src/core/bus.cpp index 7b38d011c..8224312d4 100644 --- a/src/core/bus.cpp +++ b/src/core/bus.cpp @@ -945,7 +945,7 @@ void Bus::AddTTYCharacter(char ch) { if (!s_tty_line_buffer.empty()) { - Log::FastWrite(Log::Channel::TTY, Log::Level::Info, "\033[1;34m{}\033[0m", s_tty_line_buffer); + Log::FastWrite(Log::Channel::TTY, Log::Level::Info, Log::Color::StrongBlue, s_tty_line_buffer); #if defined(_DEBUG) || defined(_DEVEL) if (CPU::IsTraceEnabled()) CPU::WriteToExecutionLog("TTY: %s\n", s_tty_line_buffer.c_str());