aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl
diff options
context:
space:
mode:
authorLars Persson2008-04-02 21:19:17 +0000
committerLars Persson2008-04-02 21:19:17 +0000
commitacc5d79d7c76c4ad5cc45c608ebee72c0a7af1de (patch)
treee9d577507b0de44edc05931f007b96ea48af8313 /backends/platform/sdl
parent9bda4980990be08fbdd8595ee01080aceec9699b (diff)
downloadscummvm-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/sdl')
-rw-r--r--backends/platform/sdl/sdl.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp
index d5db665f21..866f5299a0 100644
--- a/backends/platform/sdl/sdl.cpp
+++ b/backends/platform/sdl/sdl.cpp
@@ -45,9 +45,6 @@
*/
#if defined(__amigaos4__)
#include "backends/fs/amigaos4/amigaos4-fs-factory.h"
-#elif defined(__SYMBIAN32__)
- // TODO: Move this to the symbian source code
- #include "backends/fs/symbian/symbian-fs-factory.h"
#elif defined(UNIX)
#include "backends/fs/posix/posix-fs-factory.h"
#elif defined(WIN32)
@@ -235,13 +232,13 @@ Common::SaveFileManager *OSystem_SDL::getSavefileManager() {
FilesystemFactory *OSystem_SDL::getFilesystemFactory() {
#if defined(__amigaos4__)
- return &AmigaOSFilesystemFactory::instance();
- #elif defined(__SYMBIAN32__)
- return &SymbianFilesystemFactory::instance();
+ return &AmigaOSFilesystemFactory::instance();
#elif defined(UNIX)
return &POSIXFilesystemFactory::instance();
#elif defined(WIN32)
return &WindowsFilesystemFactory::instance();
+ #elif defined(__SYMBIAN32__)
+ // Do nothing since its handled by the Symbian SDL inheritance
#else
#error Unknown and unsupported backend in OSystem_SDL::getFilesystemFactory
#endif