diff options
author | Lars Persson | 2008-04-02 21:19:17 +0000 |
---|---|---|
committer | Lars Persson | 2008-04-02 21:19:17 +0000 |
commit | acc5d79d7c76c4ad5cc45c608ebee72c0a7af1de (patch) | |
tree | e9d577507b0de44edc05931f007b96ea48af8313 /backends/platform/symbian/src | |
parent | 9bda4980990be08fbdd8595ee01080aceec9699b (diff) | |
download | scummvm-rg350-acc5d79d7c76c4ad5cc45c608ebee72c0a7af1de.tar.gz scummvm-rg350-acc5d79d7c76c4ad5cc45c608ebee72c0a7af1de.tar.bz2 scummvm-rg350-acc5d79d7c76c4ad5cc45c608ebee72c0a7af1de.zip |
Remove Symbian FS creation from common SDL code
svn-id: r31364
Diffstat (limited to 'backends/platform/symbian/src')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 7 | ||||
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 341f551716..3e34025eab 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -24,7 +24,8 @@ #include <eikenv.h> // for CEikonEnv::Static() @ Symbian::FatalError() #include <sdlapp.h> // for CSDLApp::GetExecutablePathCStr() @ Symbian::GetExecutablePath() - + +#include "backends/fs/symbian/symbian-fs-factory.h" #include "backends/platform/symbian/src/SymbianOS.h" #include "backends/platform/symbian/src/SymbianActions.h" #include "common/config-manager.h" @@ -105,6 +106,10 @@ void OSystem_SDL_Symbian::setFeatureState(Feature f, bool enable) { } } +FilesystemFactory *OSystem_SDL_Symbian::getFilesystemFactory() { + return &SymbianFilesystemFactory::instance(); +} + OSystem_SDL_Symbian::zoneDesc OSystem_SDL_Symbian::_zones[TOTAL_ZONES] = { { 0, 0, 320, 145 }, { 0, 145, 150, 55 }, diff --git a/backends/platform/symbian/src/SymbianOS.h b/backends/platform/symbian/src/SymbianOS.h index 68f692915a..77e42cd476 100644 --- a/backends/platform/symbian/src/SymbianOS.h +++ b/backends/platform/symbian/src/SymbianOS.h @@ -75,6 +75,7 @@ protected: // void symbianMix(byte *samples, int len); + virtual FilesystemFactory *getFilesystemFactory(); public: // vibration support #ifdef USE_VIBRA_SE_PXXX |