diff options
author | Filippos Karapetis | 2010-01-05 21:05:32 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-01-05 21:05:32 +0000 |
commit | 3e911cd6e8295b5d499a90ce1774f86d893d9133 (patch) | |
tree | ed10f997c8abe4cff7dfc8c766901a2ebc9ada54 /engines/sci | |
parent | be9507fcb1851966ee58539abc8825dd6859b188 (diff) | |
download | scummvm-rg350-3e911cd6e8295b5d499a90ce1774f86d893d9133.tar.gz scummvm-rg350-3e911cd6e8295b5d499a90ce1774f86d893d9133.tar.bz2 scummvm-rg350-3e911cd6e8295b5d499a90ce1774f86d893d9133.zip |
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
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |