summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 5b0295da..00c143d4 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -304,7 +304,8 @@ static bool saveScreenshot()
filenameSuffix.str("");
filename.str("");
filename << Client::getScreenshotDirectory() << "/";
- filenameSuffix << "Mana_Screenshot_" << screenshotCount << ".png";
+ filenameSuffix << branding.getValue("appShort", "Mana")
+ << "_Screenshot_" << screenshotCount << ".png";
filename << filenameSuffix.str();
testExists.open(filename.str().c_str(), std::ios::in);
found = !testExists.is_open();