aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/system.cpp4
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__)