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/iphone | |
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/iphone')
-rw-r--r-- | backends/platform/iphone/osys_iphone.cpp | 6 | ||||
-rw-r--r-- | backends/platform/iphone/osys_iphone.h | 1 |
2 files changed, 1 insertions, 6 deletions
diff --git a/backends/platform/iphone/osys_iphone.cpp b/backends/platform/iphone/osys_iphone.cpp index fdef911d0a..3d5571cf3a 100644 --- a/backends/platform/iphone/osys_iphone.cpp +++ b/backends/platform/iphone/osys_iphone.cpp @@ -88,7 +88,7 @@ int OSystem_IPHONE::timerHandler(int t) { } void OSystem_IPHONE::initBackend() { - _savefile = new DefaultSaveFileManager(); + _savefile = new DefaultSaveFileManager(SCUMMVM_SAVE_PATH); _timer = new DefaultTimerManager(); gettimeofday(&_startTime, NULL); @@ -1196,10 +1196,6 @@ const char* OSystem_IPHONE::getConfigPath() { return SCUMMVM_PREFS_PATH; } -const char* OSystem_IPHONE::getSavePath() { - return SCUMMVM_SAVE_PATH; -} - void OSystem_IPHONE::migrateApp() { // Migrate to the new 1.1.3 directory structure, if needed. diff --git a/backends/platform/iphone/osys_iphone.h b/backends/platform/iphone/osys_iphone.h index af883a62c9..c058686c8c 100644 --- a/backends/platform/iphone/osys_iphone.h +++ b/backends/platform/iphone/osys_iphone.h @@ -172,7 +172,6 @@ public: static void migrateApp(); static const char* getConfigPath(); - static const char* getSavePath(); protected: inline void addDirtyRect(int16 x1, int16 y1, int16 w, int16 h); |