From c51779d4d3c83e88d81c1debe364db8d83424494 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Mon, 6 Jan 2020 23:44:48 +0300 Subject: [PATCH] Fix format string in log_frame.cpp --- rpcs3/rpcs3qt/log_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/log_frame.cpp b/rpcs3/rpcs3qt/log_frame.cpp index b26d37c66e..4daa93f6c4 100644 --- a/rpcs3/rpcs3qt/log_frame.cpp +++ b/rpcs3/rpcs3qt/log_frame.cpp @@ -363,7 +363,7 @@ void log_frame::CreateAndConnectActions() } else { - text = fmt::format("%s > %s\n", "Ch.%d", m_tty_channel, text); + text = fmt::format("Ch.%d > %s\n", m_tty_channel, text); } if (g_tty)