aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Persson2008-07-27 21:37:47 +0000
committerLars Persson2008-07-27 21:37:47 +0000
commit2f0a40a6971a73737e16ecd46fda3b78c4c7b04e (patch)
tree90ae4746f65c93ef967dfc0af3340233770765d1
parente93fb5fe805017bed3e8efc17864dde6e650816b (diff)
downloadscummvm-rg350-2f0a40a6971a73737e16ecd46fda3b78c4c7b04e.tar.gz
scummvm-rg350-2f0a40a6971a73737e16ecd46fda3b78c4c7b04e.tar.bz2
scummvm-rg350-2f0a40a6971a73737e16ecd46fda3b78c4c7b04e.zip
Fixed the Symbian default savepath, but adding the needed \ at the end and now as a string.
svn-id: r33347
-rw-r--r--base/commandLine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index 725ab069f1..fa96e30b9a 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -228,7 +228,7 @@ void registerDefaults() {
#elif defined(__SYMBIAN32__)
strcpy(savePath, Symbian::GetExecutablePath());
strcat(savePath, DEFAULT_SAVE_PATH);
- strcat(savePath, '\\');
+ strcat(savePath, "\\");
ConfMan.registerDefault("savepath", savePath);
#elif defined (IPHONE)
ConfMan.registerDefault("savepath", OSystem_IPHONE::getSavePath());