From 3e911cd6e8295b5d499a90ce1774f86d893d9133 Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Tue, 5 Jan 2010 21:05:32 +0000 Subject: Changed an error to a warning in execute_method(), so that Torin's Passage scripts continue running (and crash at some later point) svn-id: r47044 --- engines/sci/engine/vm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 1b570c5dea..f9fb37f7a2 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -226,7 +226,7 @@ ExecStack *execute_method(EngineState *s, uint16 script, uint16 pubfunct, StackP const int temp = s->_segMan->validateExportFunc(pubfunct, seg); if (!temp) { - error("Request for invalid exported function 0x%x of script 0x%x", pubfunct, script); + warning("Request for invalid exported function 0x%x of script 0x%x", pubfunct, script); return NULL; } -- cgit v1.2.3