summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2020-11-20 19:53:53 +0100
committerJosJuice <josjuice@gmail.com>2020-11-20 20:24:30 +0100
commite63b00e562e5641fa4a24c5eb63f3d754a7d8ca5 (patch)
tree09d5baabbf94e8478c3ff1803dc5fac43594c308 /Source/Core/VideoCommon/RenderBase.cpp
parent17da28ff07d1a98aaaac0fe212804a5e90125b27 (diff)
Fix translatable strings which contain non-positional arguments
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index 5de871f6dd..465bf25099 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -1666,7 +1666,7 @@ bool Renderer::StartFrameDumpToImage(const FrameDump::FrameData&)
std::string filename = GetFrameDumpNextImageFileName();
if (File::Exists(filename))
{
- if (!AskYesNoFmtT("Frame dump image(s) '{}' already exists. Overwrite?", filename))
+ if (!AskYesNoFmtT("Frame dump image(s) '{0}' already exists. Overwrite?", filename))
return false;
}
}