diff options
author | Lars Persson | 2008-07-27 21:35:39 +0000 |
---|---|---|
committer | Lars Persson | 2008-07-27 21:35:39 +0000 |
commit | e93fb5fe805017bed3e8efc17864dde6e650816b (patch) | |
tree | a0a03dc0d96c54497d38f0cf24f2fa36162e8025 | |
parent | 4a245208c093f9587163a9df283d91a440e21379 (diff) | |
download | scummvm-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
-rw-r--r-- | base/commandLine.cpp | 1 |
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()); |