Fix a string not getting translated

This commit is contained in:
JosJuice 2018-09-08 15:16:39 +02:00
parent 5f0d825f40
commit a4f950ee86
1 changed files with 1 additions and 3 deletions

View File

@ -62,10 +62,8 @@ bool InputConfig::LoadConfig(bool isGC)
if (profiles.empty()) if (profiles.empty())
{ {
const std::string error =
"No profiles found for game setting '" + profile_setting + "'";
// TODO: PanicAlert shouldn't be used for this. // TODO: PanicAlert shouldn't be used for this.
PanicAlertT("%s", error.c_str()); PanicAlertT("No profiles found for game setting '%s'", profile_setting.c_str());
continue; continue;
} }