Fixed the Symbian default savepath, but adding the needed \ at the end.

svn-id: r33345
This commit is contained in:
Lars Persson 2008-07-27 21:35:39 +00:00
parent 4a245208c0
commit e93fb5fe80

View File

@ -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());