mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Add helper function for fmt::format(GetStringT(...
This commit is contained in:
parent
d100c1dc37
commit
1084cfec1a
6 changed files with 46 additions and 48 deletions
|
@ -677,7 +677,7 @@ std::string GameFile::GetFileFormatName() const
|
|||
{
|
||||
std::string name = DiscIO::GetName(m_blob_type, true);
|
||||
if (m_is_nkit)
|
||||
name = fmt::format(Common::GetStringT("{0} (NKit)"), name);
|
||||
name = Common::FmtFormatT("{0} (NKit)", name);
|
||||
return name;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue