diff options
author | Max Horn | 2011-06-07 13:11:44 +0200 |
---|---|---|
committer | Max Horn | 2011-06-07 14:57:59 +0200 |
commit | c701bdb708512cc929f4519b90f4e51cd4ccf5ae (patch) | |
tree | b40cf233e53a591bdbc51821794588e081cd7d14 /backends | |
parent | 0a0c6ac07dd6ded3c0b90edd8c8ac3f9518c8a9d (diff) | |
download | scummvm-rg350-c701bdb708512cc929f4519b90f4e51cd4ccf5ae.tar.gz scummvm-rg350-c701bdb708512cc929f4519b90f4e51cd4ccf5ae.tar.bz2 scummvm-rg350-c701bdb708512cc929f4519b90f4e51cd4ccf5ae.zip |
N64: Use OSystem's _fsFactory slot
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/n64/osys_n64.h | 2 | ||||
-rw-r--r-- | backends/platform/n64/osys_n64_base.cpp | 5 |
2 files changed, 0 insertions, 7 deletions
diff --git a/backends/platform/n64/osys_n64.h b/backends/platform/n64/osys_n64.h index b338887e56..2c908c7fc3 100644 --- a/backends/platform/n64/osys_n64.h +++ b/backends/platform/n64/osys_n64.h @@ -74,7 +74,6 @@ enum GraphicModeID { class OSystem_N64 : public BaseBackend, public PaletteManager { protected: Audio::MixerImpl *_mixer; - FilesystemFactory *_fsFactory; struct display_context * _dc; // Display context for N64 on screen buffer switching @@ -200,7 +199,6 @@ public: virtual Audio::Mixer *getMixer(); virtual void getTimeAndDate(TimeDate &t) const; virtual void setTimerCallback(TimerProc callback, int interval); - FilesystemFactory *getFilesystemFactory(); void rebuildOffscreenGameBuffer(void); void rebuildOffscreenMouseBuffer(void); diff --git a/backends/platform/n64/osys_n64_base.cpp b/backends/platform/n64/osys_n64_base.cpp index 8a2d415d75..68a1a48607 100644 --- a/backends/platform/n64/osys_n64_base.cpp +++ b/backends/platform/n64/osys_n64_base.cpp @@ -155,7 +155,6 @@ OSystem_N64::OSystem_N64() { OSystem_N64::~OSystem_N64() { delete _mixer; - delete _fsFactory; } void OSystem_N64::initBackend() { @@ -871,10 +870,6 @@ void OSystem_N64::getTimeAndDate(TimeDate &t) const { return; } -FilesystemFactory *OSystem_N64::getFilesystemFactory() { - return _fsFactory; -} - void OSystem_N64::setTimerCallback(TimerProc callback, int interval) { assert (interval > 0); |