diff options
author | Filippos Karapetis | 2012-07-08 21:58:47 +0300 |
---|---|---|
committer | Filippos Karapetis | 2012-07-08 22:01:11 +0300 |
commit | 50dc5009c85f3713d6917d5aba1cbb1428da1c30 (patch) | |
tree | 28de7a5a523e6017c4e7d2185f9eb528d1eaf8d2 | |
parent | bb434d4acddcef722465b19062f8ba5b8da86b63 (diff) | |
download | scummvm-rg350-50dc5009c85f3713d6917d5aba1cbb1428da1c30.tar.gz scummvm-rg350-50dc5009c85f3713d6917d5aba1cbb1428da1c30.tar.bz2 scummvm-rg350-50dc5009c85f3713d6917d5aba1cbb1428da1c30.zip |
SCI: Ignore another leftover script from KQ7 in the debugger
-rw-r--r-- | engines/sci/console.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 40a6fd1415..564bbbbd79 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -2987,8 +2987,9 @@ void Console::printKernelCallsFound(int kernelFuncNum, bool showFoundScripts) { // Ignore specific leftover scripts, which require other non-existing scripts if ((_engine->getGameId() == GID_HOYLE3 && itr->getNumber() == 995) || (_engine->getGameId() == GID_KQ5 && itr->getNumber() == 980) || - (_engine->getGameId() == GID_SLATER && itr->getNumber() == 947) || - (_engine->getGameId() == GID_MOTHERGOOSE256 && itr->getNumber() == 980)) { + (_engine->getGameId() == GID_KQ7 && itr->getNumber() == 111) || + (_engine->getGameId() == GID_MOTHERGOOSE256 && itr->getNumber() == 980) || + (_engine->getGameId() == GID_SLATER && itr->getNumber() == 947)) { continue; } |