mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Remove '\n' from OSD messages; they would be converted to '?'
This commit is contained in:
parent
ea33405feb
commit
55af20a439
3 changed files with 2 additions and 5 deletions
|
@ -326,7 +326,7 @@ void Renderer::DrawDebugText()
|
|||
if (SConfig::GetInstance().m_ShowLag)
|
||||
{
|
||||
draw_text(OSD::MessageType::MovieLag,
|
||||
StringFromFormat("Lag: %" PRIu64 "\n", Movie::GetCurrentLagCount()));
|
||||
StringFromFormat("Lag: %" PRIu64, Movie::GetCurrentLagCount()));
|
||||
}
|
||||
|
||||
if (SConfig::GetInstance().m_ShowInputDisplay)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue