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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Wed Jun 30 13:08:24 CEST 2010


Revision: 50528
          http://scummvm.svn.sourceforge.net/scummvm/?rev=50528&view=rev
Author:   thebluegr
Date:     2010-06-30 11:08:23 +0000 (Wed, 30 Jun 2010)

Log Message:
-----------
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

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

Modified: scummvm/trunk/engines/sci/engine/klists.cpp
===================================================================
--- scummvm/trunk/engines/sci/engine/klists.cpp	2010-06-30 11:05:29 UTC (rev 50527)
+++ scummvm/trunk/engines/sci/engine/klists.cpp	2010-06-30 11:08:23 UTC (rev 50528)
@@ -272,7 +272,8 @@
 	}
 
 	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;


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