aboutsummaryrefslogtreecommitdiff
path: root/common/config-manager.cpp
diff options
context:
space:
mode:
authorLars Persson2006-02-12 00:33:04 +0000
committerLars Persson2006-02-12 00:33:04 +0000
commit0b847325e1b57ad2feec943ae715236cf393d13b (patch)
treefe75e08da4d3967125f8706bbe520d5f66e69e85 /common/config-manager.cpp
parent37f433a7ad516df85cd62e32e1a178635212b047 (diff)
downloadscummvm-rg350-0b847325e1b57ad2feec943ae715236cf393d13b.tar.gz
scummvm-rg350-0b847325e1b57ad2feec943ae715236cf393d13b.tar.bz2
scummvm-rg350-0b847325e1b57ad2feec943ae715236cf393d13b.zip
'Changed Symbian configuration handling so it is using the basepath of the application installation as a path for Savegames, ini files etc
*Updated list.h so it also compiles for Symbian codewarrior and gcce compilers svn-id: r20586
Diffstat (limited to 'common/config-manager.cpp')
-rw-r--r--common/config-manager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/config-manager.cpp b/common/config-manager.cpp
index 128db8035b..ee49a4babf 100644
--- a/common/config-manager.cpp
+++ b/common/config-manager.cpp
@@ -109,7 +109,8 @@ void ConfigManager::loadDefaultConfigFile() {
#elif defined(__PSP__)
strcpy(configFile, "ms0:/" DEFAULT_CONFIG_FILE);
#elif defined (__SYMBIAN32__)
- strcpy(configFile, SYMBIAN32_DOC_DIR DEFAULT_CONFIG_FILE);
+ strcpy(configFile, Symbian::GetExecutablePath());
+ strcat(configFile, DEFAULT_CONFIG_FILE);
#else
strcpy(configFile, DEFAULT_CONFIG_FILE);
#endif