diff options
author | Max Horn | 2008-08-04 19:38:28 +0000 |
---|---|---|
committer | Max Horn | 2008-08-04 19:38:28 +0000 |
commit | 4f5479ee744ac6b419cdf7ec1e96fbf7c83d36ef (patch) | |
tree | eace9bc147f654a91700c8ab4e73f361379fa59b /backends/platform/PalmOS/Src | |
parent | 99addb709cb4982725c685447774021ad2917e59 (diff) | |
download | scummvm-rg350-4f5479ee744ac6b419cdf7ec1e96fbf7c83d36ef.tar.gz scummvm-rg350-4f5479ee744ac6b419cdf7ec1e96fbf7c83d36ef.tar.bz2 scummvm-rg350-4f5479ee744ac6b419cdf7ec1e96fbf7c83d36ef.zip |
Pushed some port specific code from DefaultSaveFileManager out to port specific code in backends/platform/
svn-id: r33621
Diffstat (limited to 'backends/platform/PalmOS/Src')
-rw-r--r-- | backends/platform/PalmOS/Src/be_base.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/backends/platform/PalmOS/Src/be_base.cpp b/backends/platform/PalmOS/Src/be_base.cpp index afb3f15bae..32e68bde9f 100644 --- a/backends/platform/PalmOS/Src/be_base.cpp +++ b/backends/platform/PalmOS/Src/be_base.cpp @@ -30,6 +30,9 @@ #include "backends/timer/default/default-timer.h" #include "sound/mixer.h" +#define DEFAULT_SAVE_PATH "/PALM/Programs/ScummVM/Saved" + + OSystem_PalmBase::OSystem_PalmBase() { _overlayVisible = false; @@ -100,7 +103,7 @@ void OSystem_PalmBase::initBackend() { // Create the savefile manager, if none exists yet (we check for this to // allow subclasses to provide their own). if (_saveMgr == 0) { - _saveMgr = new DefaultSaveFileManager(); + _saveMgr = new DefaultSaveFileManager(DEFAULT_SAVE_PATH); } // Create and hook up the mixer, if none exists yet (we check for this to |