aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/klists.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2010-06-30 11:08:23 +0000
committerFilippos Karapetis2010-06-30 11:08:23 +0000
commitcb897a1a15bb178f1fdb55378852fb6da707e444 (patch)
treea77d0f32ebb8eeae92e5754b30cc465896fd6e41 /engines/sci/engine/klists.cpp
parentcf5c60ed4f0628496ad97db3c274b7f0325e2440 (diff)
downloadscummvm-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/klists.cpp')
-rw-r--r--engines/sci/engine/klists.cpp3
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;