diff options
author | Martin Kiewitz | 2010-07-14 11:41:24 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-14 11:41:24 +0000 |
commit | ede8fead945ea2901d6e812d4d6a8e44b4677c55 (patch) | |
tree | 171149edea25fb6eea68ae33edcf7894093fb2a7 | |
parent | 76f6449431e28b7530c94698467499139ffce860 (diff) | |
download | scummvm-rg350-ede8fead945ea2901d6e812d4d6a8e44b4677c55.tar.gz scummvm-rg350-ede8fead945ea2901d6e812d4d6a8e44b4677c55.tar.bz2 scummvm-rg350-ede8fead945ea2901d6e812d4d6a8e44b4677c55.zip |
SCI: changing kList(18) into StubNull, so that torin demo works a little more till we figure out what's supposed to be in there
svn-id: r50880
-rw-r--r-- | engines/sci/engine/kernel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp index d536682480..7d5338531d 100644 --- a/engines/sci/engine/kernel.cpp +++ b/engines/sci/engine/kernel.cpp @@ -480,8 +480,8 @@ static const SciKernelMapSubEntry kList_subops[] = { // passed as a second parameter instead of an object. Thus, it seems to // be something like ListAt instead... If we swap the two subops though, // Torin demo crashes complaining that it tried to send to a non-object, - // therefore the semantics might be different here - { SIG_SCI21, 18, MAP_CALL(ListIndexOf), "l[o0]", NULL }, + // therefore the semantics might be different here (signature was l[o0]) + { SIG_SCI21, 18, MAP_CALL(StubNull), "li", NULL }, { SIG_SCI21, 19, MAP_CALL(ListEachElementDo), "li(.*)", NULL }, { SIG_SCI21, 20, MAP_CALL(ListFirstTrue), "li(.*)", NULL }, { SIG_SCI21, 21, MAP_CALL(ListAllTrue), "li(.*)", NULL }, |