From 36518a8df5fbbc648e96962c12bdda099011e4f4 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Tue, 1 Jul 2025 17:40:13 +1000 Subject: [PATCH] Bus: Use log colour abstraction for TTY --- src/core/bus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());