[Scummvm-cvs-logs] SF.net SVN: scummvm:[47044] scummvm/trunk/engines/sci/engine/vm.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Jan 5 22:05:32 CET 2010


Revision: 47044
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47044&view=rev
Author:   thebluegr
Date:     2010-01-05 21:05:32 +0000 (Tue, 05 Jan 2010)

Log Message:
-----------
Changed an error to a warning in execute_method(), so that Torin's Passage scripts continue running (and crash at some later point)

Modified Paths:
--------------
    scummvm/trunk/engines/sci/engine/vm.cpp

Modified: scummvm/trunk/engines/sci/engine/vm.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/vm.cpp	2010-01-05 21:03:33 UTC (rev 47043)
+++ scummvm/trunk/engines/sci/engine/vm.cpp	2010-01-05 21:05:32 UTC (rev 47044)
@@ -226,7 +226,7 @@
 
 	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;
 	}
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list