[Scummvm-cvs-logs] SF.net SVN: scummvm:[40124] scummvm/trunk/engines/sci/gfx/res_pic.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Apr 24 20:38:41 CEST 2009


Revision: 40124
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40124&view=rev
Author:   thebluegr
Date:     2009-04-24 18:38:40 +0000 (Fri, 24 Apr 2009)

Log Message:
-----------
Changed an error to a warning, to make Longbow playable again

Modified Paths:
--------------
    scummvm/trunk/engines/sci/gfx/res_pic.cpp

Modified: scummvm/trunk/engines/sci/gfx/res_pic.cpp
===================================================================
--- scummvm/trunk/engines/sci/gfx/res_pic.cpp	2009-04-24 18:23:31 UTC (rev 40123)
+++ scummvm/trunk/engines/sci/gfx/res_pic.cpp	2009-04-24 18:38:40 UTC (rev 40124)
@@ -1726,7 +1726,8 @@
 				if (!pic->priorityTable) {
 					pic->priorityTable = (int*)sci_malloc(16 * sizeof(int));
 				} else {
-					GFXERROR("pic->priorityTable is not NULL (%p); this only occurs with overlaid pics, otherwise it's a bug", (void *)pic->priorityTable);
+					// This occurs in the title screen of Longbow, perhaps with the animated Robin sprite
+					GFXWARN("pic->priorityTable is not NULL (%p); this only occurs with overlaid pics, otherwise it's a bug", (void *)pic->priorityTable);
 				}
 
 				pri_table = pic->priorityTable;


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