diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-17 18:02:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 18:02:39 +0100 |
| commit | 07be82d64f16d82bb99e29c84de82120eba348bf (patch) | |
| tree | f4e1dde294ede8ee55901a942b8a24cf6ff81c80 /Source/Core/InputCommon/InputConfig.cpp | |
| parent | 4c9b226bd623e12a8269ae869462916e385e647d (diff) | |
| parent | 9a01c3fb9f137b666f27fcf8f1bfc3ac9c42346b (diff) | |
Merge pull request #9253 from JosJuice/positional-arguments
Use positional arguments in all translatable fmt strings
Diffstat (limited to 'Source/Core/InputCommon/InputConfig.cpp')
| -rw-r--r-- | Source/Core/InputCommon/InputConfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/InputConfig.cpp b/Source/Core/InputCommon/InputConfig.cpp index b531e56003..03d2874332 100644 --- a/Source/Core/InputCommon/InputConfig.cpp +++ b/Source/Core/InputCommon/InputConfig.cpp @@ -73,7 +73,7 @@ bool InputConfig::LoadConfig(bool isGC) if (profiles.empty()) { // TODO: PanicAlert shouldn't be used for this. - PanicAlertFmtT("No profiles found for game setting '{}'", profile_setting); + PanicAlertFmtT("No profiles found for game setting '{0}'", profile_setting); continue; } |
