aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2008-03-12 18:42:47 +0000
committerMax Horn2008-03-12 18:42:47 +0000
commit05b159609b074fb4f45454edcc92446557b3167d (patch)
tree364031614d98882d7b3beb592dfbd319c131348e /common
parentb434f189bce98626dbe31539bb8d907e67d5ca99 (diff)
downloadscummvm-rg350-05b159609b074fb4f45454edcc92446557b3167d.tar.gz
scummvm-rg350-05b159609b074fb4f45454edcc92446557b3167d.tar.bz2
scummvm-rg350-05b159609b074fb4f45454edcc92446557b3167d.zip
Removed remaining traces of the dead MorphOS backend, which itself was removed about one year ago
svn-id: r31114
Diffstat (limited to 'common')
-rw-r--r--common/scummsys.h8
-rw-r--r--common/system.cpp4
2 files changed, 0 insertions, 12 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index dfdf728ff4..4299de7243 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -301,14 +301,6 @@
# undef UNUSED
#endif
-#elif defined(__MORPHOS__)
-
- #define scumm_stricmp stricmp
- #define scumm_strnicmp strnicmp
-
- #define SCUMM_BIG_ENDIAN
- #define SCUMM_NEED_ALIGNMENT
-
#elif defined(__DC__)
#define scumm_stricmp strcasecmp
diff --git a/common/system.cpp b/common/system.cpp
index 73119da9e6..6328f392b8 100644
--- a/common/system.cpp
+++ b/common/system.cpp
@@ -142,8 +142,6 @@ void OSystem::getTimeAndDate(struct tm &t) const {
#include "backends/fs/ds/ds-fs-factory.h"
#elif defined(__GP32__)
#include "backends/fs/gp32/gp32-fs-factory.h"
-#elif defined(__MORPHOS__)
- #include "backends/fs/morphos/abox-fs-factory.h"
#elif defined(PALMOS_MODE)
#include "backends/fs/palmos/palmos-fs-factory.h"
#elif defined(__PLAYSTATION2__)
@@ -160,8 +158,6 @@ FilesystemFactory *OSystem::getFilesystemFactory() {
return &DSFilesystemFactory::instance();
#elif defined(__GP32__)
return &GP32FilesystemFactory::instance();
- #elif defined(__MORPHOS__)
- return &ABoxFilesystemFactory::instance();
#elif defined(PALMOS_MODE)
return &PalmOSFilesystemFactory::instance();
#elif defined(__PLAYSTATION2__)