aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-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__)