diff options
author | Filippos Karapetis | 2010-06-30 11:08:23 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-06-30 11:08:23 +0000 |
commit | cb897a1a15bb178f1fdb55378852fb6da707e444 (patch) | |
tree | a77d0f32ebb8eeae92e5754b30cc465896fd6e41 /engines/sci/engine | |
parent | cf5c60ed4f0628496ad97db3c274b7f0325e2440 (diff) | |
download | scummvm-rg350-cb897a1a15bb178f1fdb55378852fb6da707e444.tar.gz scummvm-rg350-cb897a1a15bb178f1fdb55378852fb6da707e444.tar.bz2 scummvm-rg350-cb897a1a15bb178f1fdb55378852fb6da707e444.zip |
Changed an error back to a warning - Torin's Passage calls kAddAfter with 4 parameters, and we don't know what the 4th parameter is yet
svn-id: r50528
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/klists.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/klists.cpp b/engines/sci/engine/klists.cpp index 6842c9b1d8..4f8087539b 100644 --- a/engines/sci/engine/klists.cpp +++ b/engines/sci/engine/klists.cpp @@ -272,7 +272,8 @@ reg_t kAddAfter(EngineState *s, int argc, reg_t *argv) { } if (argc == 4) // Torin's Passage - error("kAddAfter with 4 params called, 4th param is %04x:%04x", PRINT_REG(argv[3])); + // TODO: Find out what the 4th parameter is + warning("kAddAfter with 4 params called, 4th param is %04x:%04x", PRINT_REG(argv[3])); if (firstnode) { // We're really appending after reg_t oldnext = firstnode->succ; |