aboutsummaryrefslogtreecommitdiff
path: root/engines/sci
diff options
context:
space:
mode:
authorFilippos Karapetis2009-07-06 15:30:07 +0000
committerFilippos Karapetis2009-07-06 15:30:07 +0000
commit8f284ad396445549602369c9c2158280b9784fc2 (patch)
tree45dda4549d1700ab590e767c6efeaa4772b95e3e /engines/sci
parent69a3e2759ed2682ef2c0cde8d77185bce4052019 (diff)
downloadscummvm-rg350-8f284ad396445549602369c9c2158280b9784fc2.tar.gz
scummvm-rg350-8f284ad396445549602369c9c2158280b9784fc2.tar.bz2
scummvm-rg350-8f284ad396445549602369c9c2158280b9784fc2.zip
KQ6CD should be working correctly again
svn-id: r42178
Diffstat (limited to 'engines/sci')
-rw-r--r--engines/sci/detection.cpp2
-rw-r--r--engines/sci/engine/kernel.cpp5
2 files changed, 6 insertions, 1 deletions
diff --git a/engines/sci/detection.cpp b/engines/sci/detection.cpp
index 79088c86ff..9e73435977 100644
--- a/engines/sci/detection.cpp
+++ b/engines/sci/detection.cpp
@@ -1241,7 +1241,7 @@ static const struct SciGameDescription SciGameDescriptions[] = {
{"resource.000", 0, "233394a5f33b475ae5975e7e9a420865", 8376352},
{NULL, 0, NULL, 0}}, Common::EN_ANY, Common::kPlatformPC, 0, GUIO_NONE},
0,
- 7,
+ SCI_VERSION_1_1,
SCI_VERSION_1_1
},
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index 2f8461a34a..e2e13aea27 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -793,6 +793,11 @@ void Kernel::setDefaultKernelNames() {
offset = 4;
}
}
+
+ if (_resmgr->_sciVersion == SCI_VERSION_1_1) {
+ // HACK: KQ6CD calls unimplemented function 0x26
+ _kernelNames[0x26] = "Dummy";
+ }
}
#ifdef ENABLE_SCI32