aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;