aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/kernel.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-30 13:31:47 +0000
committerFilippos Karapetis2010-06-30 13:31:47 +0000
commita14c6d7815e27e76846a2a0feedcbf90785e07c9 (patch)
treef621695e44642ab99a3767758fc8aaef0909ff1a /engines/sci/engine/kernel.cpp
parentbf6acef9a9accb1753f87d34c3d5dddd56e36642 (diff)
downloadscummvm-rg350-a14c6d7815e27e76846a2a0feedcbf90785e07c9.tar.gz
scummvm-rg350-a14c6d7815e27e76846a2a0feedcbf90785e07c9.tar.bz2
scummvm-rg350-a14c6d7815e27e76846a2a0feedcbf90785e07c9.zip
Fixed the signature for kUnload (thanks m_kiewitz)
svn-id: r50530
Diffstat (limited to 'engines/sci/engine/kernel.cpp')
-rw-r--r--engines/sci/engine/kernel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index 29b6a9bf9e..ec3cdc5106 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -252,7 +252,7 @@ struct SciKernelMapEntry {
// name, version/platform, signature, sub-signatures, workarounds
static SciKernelMapEntry s_kernelMap[] = {
{ MAP_CALL(Load), SIG_EVERYWHERE, "iii*", NULL, NULL },
- { MAP_CALL(UnLoad), SIG_EVERYWHERE, "ii*", NULL, kUnLoad_workarounds },
+ { MAP_CALL(UnLoad), SIG_EVERYWHERE, "iRi*", NULL, kUnLoad_workarounds },
{ MAP_CALL(ScriptID), SIG_EVERYWHERE, "Ioi*", NULL, NULL },
{ MAP_CALL(DisposeScript), SIG_EVERYWHERE, "ii*", NULL, kDisposeScript_workarounds },
{ MAP_CALL(Clone), SIG_EVERYWHERE, "o", NULL, NULL },