aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMax Horn2003-09-08 17:30:24 +0000
committerMax Horn2003-09-08 17:30:24 +0000
commitf61fdef99623f0c76b692aa04fb89dbd613bfd09 (patch)
tree523cb4af404c1d761374fb3abc59c464e70132e5 /common
parent940200f1735190e85d204b109861a6b091f6cc66 (diff)
downloadscummvm-rg350-f61fdef99623f0c76b692aa04fb89dbd613bfd09.tar.gz
scummvm-rg350-f61fdef99623f0c76b692aa04fb89dbd613bfd09.tar.bz2
scummvm-rg350-f61fdef99623f0c76b692aa04fb89dbd613bfd09.zip
fixed disabling of modules
svn-id: r10102
Diffstat (limited to 'common')
-rw-r--r--common/engine.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/common/engine.cpp b/common/engine.cpp
index b6b2d1092d..0ceb7e5751 100644
--- a/common/engine.cpp
+++ b/common/engine.cpp
@@ -247,9 +247,18 @@ void checkHeap() {
//
EngineFactory _factories[] =
{
- Engine_SKY_create,
+#ifndef DISABLE_SCUMM
Engine_SCUMM_create,
+#endif
+#ifndef DISABLE_SCUMM
Engine_SIMON_create,
- Engine_SWORD2_create
+#endif
+#ifndef DISABLE_SCUMM
+ Engine_SKY_create,
+#endif
+#ifndef DISABLE_SCUMM
+ Engine_SWORD2_create,
+#endif
+ 0
};