summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 7168f0cec..5dd417670 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -355,6 +355,11 @@ void Client::gameInit()
putenv("SDL_VIDEO_CENTERED=0");
#endif
+ if (config.getBoolValue("allowscreensaver"))
+ putenv("SDL_VIDEO_ALLOW_SCREENSAVER=1");
+ else
+ putenv("SDL_VIDEO_ALLOW_SCREENSAVER=0");
+
chatLogger = new ChatLogger;
if (mOptions.chatLogDir == "")
chatLogger->setBaseLogDir(mLocalDataDir + std::string("/logs/"));