summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/NANDImporter.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-17 18:02:39 +0100
committerGitHub <noreply@github.com>2020-11-17 18:02:39 +0100
commit07be82d64f16d82bb99e29c84de82120eba348bf (patch)
treef4e1dde294ede8ee55901a942b8a24cf6ff81c80 /Source/Core/DiscIO/NANDImporter.cpp
parent4c9b226bd623e12a8269ae869462916e385e647d (diff)
parent9a01c3fb9f137b666f27fcf8f1bfc3ac9c42346b (diff)
Merge pull request #9253 from JosJuice/positional-arguments
Use positional arguments in all translatable fmt strings
Diffstat (limited to 'Source/Core/DiscIO/NANDImporter.cpp')
-rw-r--r--Source/Core/DiscIO/NANDImporter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DiscIO/NANDImporter.cpp b/Source/Core/DiscIO/NANDImporter.cpp
index d67bbf047d..aea5398426 100644
--- a/Source/Core/DiscIO/NANDImporter.cpp
+++ b/Source/Core/DiscIO/NANDImporter.cpp
@@ -272,6 +272,6 @@ void NANDImporter::ExportKeys(const std::string& nand_root)
const std::string file_path = nand_root + "/keys.bin";
File::IOFile file(file_path, "wb");
if (!file.WriteBytes(m_nand_keys.data(), NAND_KEYS_SIZE))
- PanicAlertFmtT("Unable to write to file {}", file_path);
+ PanicAlertFmtT("Unable to write to file {0}", file_path);
}
} // namespace DiscIO