aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorLars Persson2008-07-27 21:35:39 +0000
committerLars Persson2008-07-27 21:35:39 +0000
commite93fb5fe805017bed3e8efc17864dde6e650816b (patch)
treea0a03dc0d96c54497d38f0cf24f2fa36162e8025 /base
parent4a245208c093f9587163a9df283d91a440e21379 (diff)
downloadscummvm-rg350-e93fb5fe805017bed3e8efc17864dde6e650816b.tar.gz
scummvm-rg350-e93fb5fe805017bed3e8efc17864dde6e650816b.tar.bz2
scummvm-rg350-e93fb5fe805017bed3e8efc17864dde6e650816b.zip
Fixed the Symbian default savepath, but adding the needed \ at the end.
svn-id: r33345
Diffstat (limited to 'base')
-rw-r--r--base/commandLine.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index b9fd4ecfb7..725ab069f1 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -228,6 +228,7 @@ void registerDefaults() {
#elif defined(__SYMBIAN32__)
strcpy(savePath, Symbian::GetExecutablePath());
strcat(savePath, DEFAULT_SAVE_PATH);
+ strcat(savePath, '\\');
ConfMan.registerDefault("savepath", savePath);
#elif defined (IPHONE)
ConfMan.registerDefault("savepath", OSystem_IPHONE::getSavePath());