diff options
| author | JosJuice <josjuice@gmail.com> | 2020-11-20 19:53:53 +0100 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2020-11-20 20:24:30 +0100 |
| commit | e63b00e562e5641fa4a24c5eb63f3d754a7d8ca5 (patch) | |
| tree | 09d5baabbf94e8478c3ff1803dc5fac43594c308 /Source/Core/VideoCommon/ImageWrite.cpp | |
| parent | 17da28ff07d1a98aaaac0fe212804a5e90125b27 (diff) | |
Fix translatable strings which contain non-positional arguments
Diffstat (limited to 'Source/Core/VideoCommon/ImageWrite.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/ImageWrite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/ImageWrite.cpp b/Source/Core/VideoCommon/ImageWrite.cpp index 1085e7df24..aa3bdbe7e9 100644 --- a/Source/Core/VideoCommon/ImageWrite.cpp +++ b/Source/Core/VideoCommon/ImageWrite.cpp @@ -51,7 +51,7 @@ bool TextureToPng(const u8* data, int row_stride, const std::string& filename, i File::IOFile fp(filename, "wb"); if (!fp.IsOpen()) { - PanicAlertFmtT("Screenshot failed: Could not open file \"{}\" (error {})", filename, errno); + PanicAlertFmtT("Screenshot failed: Could not open file \"{0}\" (error {1})", filename, errno); goto finalise; } |
