mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 09:48:37 +12:00
Fix format string in log_frame.cpp
This commit is contained in:
parent
55f9a56e45
commit
c51779d4d3
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue