diff options
author | Matthew Hoops | 2012-05-28 20:16:39 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-05-28 20:16:39 -0400 |
commit | da3f0ba44829708c35278341395285786b095c98 (patch) | |
tree | 6b8e671c20213ce8fe24bae6a5f0a9ffeb203f23 | |
parent | d54e53d4620ae1d5e08ac48022f7a286a274473f (diff) | |
download | scummvm-rg350-da3f0ba44829708c35278341395285786b095c98.tar.gz scummvm-rg350-da3f0ba44829708c35278341395285786b095c98.tar.bz2 scummvm-rg350-da3f0ba44829708c35278341395285786b095c98.zip |
SCUMM: Fix error in spyfox iOS credits
-rw-r--r-- | engines/scumm/he/script_v90he.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/scumm/he/script_v90he.cpp b/engines/scumm/he/script_v90he.cpp index 0beebdb7a1..9e8ac7e2f2 100644 --- a/engines/scumm/he/script_v90he.cpp +++ b/engines/scumm/he/script_v90he.cpp @@ -2373,8 +2373,8 @@ void ScummEngine_v90he::o90_kernelSetFunctions() { case 2001: _logicHE->dispatch(args[1], num - 2, (int32 *)&args[2]); break; - case 201102: - // Used in puttzoo iOS + case 201102: // Used in puttzoo iOS + case 20111014: // Used in spyfox iOS break; default: error("o90_kernelSetFunctions: default case %d (param count %d)", args[0], num); |