diff options
author | Nicolas Bacca | 2004-12-11 00:39:27 +0000 |
---|---|---|
committer | Nicolas Bacca | 2004-12-11 00:39:27 +0000 |
commit | cdf2eb2eb79f59b5b0873402e07c281463b52b11 (patch) | |
tree | 230b3e9189468a6914738bc5df6331ae746a7d7d | |
parent | 876079be752023dcd377518f226fe3fc158b6048 (diff) | |
download | scummvm-rg350-cdf2eb2eb79f59b5b0873402e07c281463b52b11.tar.gz scummvm-rg350-cdf2eb2eb79f59b5b0873402e07c281463b52b11.tar.bz2 scummvm-rg350-cdf2eb2eb79f59b5b0873402e07c281463b52b11.zip |
Update CE default savepath
svn-id: r16027
-rw-r--r-- | common/savefile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/savefile.cpp b/common/savefile.cpp index 07313bfcf5..17468f6a80 100644 --- a/common/savefile.cpp +++ b/common/savefile.cpp @@ -58,7 +58,7 @@ const char *SaveFileManager::getSavePath() const { #ifdef _WIN32_WCE if (dir[0] == 0) - dir = _gameDataPath.c_str(); + dir = ConfMan.get("path").c_str(); #endif assert(dir); |