aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl/sdl.cpp
diff options
context:
space:
mode:
authorThierry Crozat2017-04-24 00:51:57 +0100
committerThierry Crozat2017-04-24 01:07:05 +0100
commite96c057c3d7d2deb8ff31bc7d798d455f74b399a (patch)
treeb5d1c30acfbc39f44ff2a0c132555beda2d891bf /backends/platform/sdl/sdl.cpp
parent11dd33bb73c998116c2b862389b616fe9249579b (diff)
downloadscummvm-rg350-e96c057c3d7d2deb8ff31bc7d798d455f74b399a.tar.gz
scummvm-rg350-e96c057c3d7d2deb8ff31bc7d798d455f74b399a.tar.bz2
scummvm-rg350-e96c057c3d7d2deb8ff31bc7d798d455f74b399a.zip
SDL: Allow specifying the screenshot directory in the config file
There is no GUI option to set the screenshot directory, but this allows power users to set it if they don't want to use the default.
Diffstat (limited to 'backends/platform/sdl/sdl.cpp')
-rw-r--r--backends/platform/sdl/sdl.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index 09268f3a53..9a5db7f110 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -573,7 +573,10 @@ Common::SaveFileManager *OSystem_SDL::getSavefileManager() {
//Not specified in base class
Common::String OSystem_SDL::getScreenshotsPath() {
- return Common::String();
+ Common::String path = ConfMan.get("screenshotpath");
+ if (!path.empty() && !path.hasSuffix("/"))
+ path += "/";
+ return path;
}
#ifdef USE_OPENGL