summaryrefslogtreecommitdiff
path: root/src/game.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game.cpp')
-rw-r--r--src/game.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/game.cpp b/src/game.cpp
index 65f0fc2c0..d9df74ddc 100644
--- a/src/game.cpp
+++ b/src/game.cpp
@@ -128,6 +128,7 @@
#include "utils/gettext.h"
#include "utils/perfstat.h"
#include "utils/pnglib.h"
+#include "utils/performance.h"
#include "utils/sdlcheckutils.h"
#include "utils/timer.h"
@@ -146,10 +147,10 @@
#include "mumblemanager.h"
#endif // USE_MUMBLE
-#ifdef WIN32
+#ifdef _WIN32
#include <sys/time.h>
#undef ERROR
-#endif // WIN32
+#endif // _WIN32
#include <fstream>
@@ -587,13 +588,13 @@ bool Game::saveScreenshot(SDL_Surface *const screenshot,
if (serverName.empty())
{
screenShortStr = strprintf("%s_Screenshot_%s_",
- branding.getValue("appName", "ManaPlus").c_str(),
+ branding.getValue("appName", "ManaVerse").c_str(),
buffer);
}
else
{
screenShortStr = strprintf("%s_Screenshot_%s_%s_",
- branding.getValue("appName", "ManaPlus").c_str(),
+ branding.getValue("appName", "ManaVerse").c_str(),
serverName.c_str(), buffer);
}