diff options
author | Neil Millstone | 2008-05-24 15:01:19 +0000 |
---|---|---|
committer | Neil Millstone | 2008-05-24 15:01:19 +0000 |
commit | d0194206498ab28efcfd2ed591041c901da78048 (patch) | |
tree | 3ad49aa2e850c12d574c756c1b5700f9eab93feb /common | |
parent | 556bab2b817cce7cc476e44ef778af6de44a98ba (diff) | |
download | scummvm-rg350-d0194206498ab28efcfd2ed591041c901da78048.tar.gz scummvm-rg350-d0194206498ab28efcfd2ed591041c901da78048.tar.bz2 scummvm-rg350-d0194206498ab28efcfd2ed591041c901da78048.zip |
Removing DS ifdef from getFileSystemFactory().
svn-id: r32248
Diffstat (limited to 'common')
-rw-r--r-- | common/system.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/system.cpp b/common/system.cpp index 5510bb59ec..f133f3c4e3 100644 --- a/common/system.cpp +++ b/common/system.cpp @@ -137,11 +137,9 @@ void OSystem::clearScreen() { #endif FilesystemFactory *OSystem::getFilesystemFactory() { - #if defined(__amigaos4__) || defined(__DC__) || defined(__SYMBIAN32__) || defined(UNIX) || defined(WIN32) || defined(__PSP__) + #if defined(__amigaos4__) || defined(__DC__) || defined(__SYMBIAN32__) || defined(UNIX) || defined(WIN32) || defined(__PSP__) || defined(__DS__) // These ports already implement this function, so it should never be called. return 0; - #elif defined(__DS__) - return &DSFilesystemFactory::instance(); #elif defined(PALMOS_MODE) return &PalmOSFilesystemFactory::instance(); #elif defined(__PLAYSTATION2__) |