diff options
| author | Lars Persson | 2008-07-27 21:37:47 +0000 |
|---|---|---|
| committer | Lars Persson | 2008-07-27 21:37:47 +0000 |
| commit | 2f0a40a6971a73737e16ecd46fda3b78c4c7b04e (patch) | |
| tree | 90ae4746f65c93ef967dfc0af3340233770765d1 /base | |
| parent | e93fb5fe805017bed3e8efc17864dde6e650816b (diff) | |
| download | scummvm-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
Diffstat (limited to 'base')
| -rw-r--r-- | base/commandLine.cpp | 2 |
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()); |
