aboutsummaryrefslogtreecommitdiff
path: root/common/system.cpp
diff options
context:
space:
mode:
authorMarcus Comstedt2008-03-01 15:45:54 +0000
committerMarcus Comstedt2008-03-01 15:45:54 +0000
commit964caae2ddc681eec5bd7353a162f584c4fef7d8 (patch)
tree077d3c87a0d360516a7eeeb524a98ccad2a0f3c9 /common/system.cpp
parent85b61f3d1032fb5c70ce4a4e23a68b1dd05d2b8f (diff)
downloadscummvm-rg350-964caae2ddc681eec5bd7353a162f584c4fef7d8.tar.gz
scummvm-rg350-964caae2ddc681eec5bd7353a162f584c4fef7d8.tar.bz2
scummvm-rg350-964caae2ddc681eec5bd7353a162f584c4fef7d8.zip
Moved Dreamcast filesystem factory to platform directory.
svn-id: r31021
Diffstat (limited to 'common/system.cpp')
-rw-r--r--common/system.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/common/system.cpp b/common/system.cpp
index a4bfe1968e..77cfe17e95 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -138,8 +138,6 @@ void OSystem::getTimeAndDate(struct tm &t) const {
*/
#if defined(__amigaos4__)
#include "backends/fs/amigaos4/amigaos4-fs-factory.h"
-#elif defined(__DC__)
- #include "backends/fs/dc/ronincd-fs-factory.h"
#elif defined(__DS__)
#include "backends/fs/ds/ds-fs-factory.h"
#elif defined(__GP32__)
@@ -164,7 +162,8 @@ FilesystemFactory *OSystem::getFilesystemFactory() {
#if defined(__amigaos4__)
return &AmigaOSFilesystemFactory::instance();
#elif defined(__DC__)
- return &RoninCDFilesystemFactory::instance();
+ // The DC port overrides this function...
+ abort();
#elif defined(__DS__)
return &DSFilesystemFactory::instance();
#elif defined(__GP32__)