diff options
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);  | 
