mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-13 22:07:34 -05:00
SCM: Use std::string.
Those macros may be defined, or not. We should support both cases, so use std::string as it also defines the length of the string.
This commit is contained in:
@@ -705,7 +705,7 @@ void CFrame::UpdateTitle(const std::string &str)
|
||||
}
|
||||
else
|
||||
{
|
||||
std::string titleStr = StringFromFormat("%s | %s", scm_rev_str, str.c_str());
|
||||
std::string titleStr = StringFromFormat("%s | %s", scm_rev_str.c_str(), str.c_str());
|
||||
m_RenderFrame->SetTitle(titleStr);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user