diff options
author | Max Horn | 2011-06-07 13:10:32 +0200 |
---|---|---|
committer | Max Horn | 2011-06-07 14:57:59 +0200 |
commit | 0a0c6ac07dd6ded3c0b90edd8c8ac3f9518c8a9d (patch) | |
tree | f901c0ced4285ff5ecb963379ebb8377428a3eda | |
parent | c74c8a59d9e8cfb0ae48eac91337451fd7599ce4 (diff) | |
download | scummvm-rg350-0a0c6ac07dd6ded3c0b90edd8c8ac3f9518c8a9d.tar.gz scummvm-rg350-0a0c6ac07dd6ded3c0b90edd8c8ac3f9518c8a9d.tar.bz2 scummvm-rg350-0a0c6ac07dd6ded3c0b90edd8c8ac3f9518c8a9d.zip |
IPHONE: Use OSystem's _fsFactory slot
-rw-r--r-- | backends/platform/iphone/osys_main.cpp | 1 | ||||
-rw-r--r-- | backends/platform/iphone/osys_main.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/backends/platform/iphone/osys_main.cpp b/backends/platform/iphone/osys_main.cpp index 4e5f860f20..5f27091108 100644 --- a/backends/platform/iphone/osys_main.cpp +++ b/backends/platform/iphone/osys_main.cpp @@ -72,7 +72,6 @@ OSystem_IPHONE::OSystem_IPHONE() : OSystem_IPHONE::~OSystem_IPHONE() { AudioQueueDispose(s_AudioQueue.queue, true); - delete _fsFactory; delete _mixer; delete _offscreen; delete _fullscreen; diff --git a/backends/platform/iphone/osys_main.h b/backends/platform/iphone/osys_main.h index 03d7cc1f79..e5ec22f19f 100644 --- a/backends/platform/iphone/osys_main.h +++ b/backends/platform/iphone/osys_main.h @@ -108,7 +108,6 @@ protected: bool _fullScreenIsDirty; bool _fullScreenOverlayIsDirty; int _screenChangeCount; - FilesystemFactory *_fsFactory; public: @@ -171,7 +170,6 @@ public: virtual int getScreenChangeID() const { return _screenChangeCount; } virtual void quit(); - FilesystemFactory *getFilesystemFactory() { return _fsFactory; } virtual void addSysArchivesToSearchSet(Common::SearchSet &s, int priority = 0); virtual void getTimeAndDate(TimeDate &t) const; |