[Scummvm-cvs-logs] SF.net SVN: scummvm: [26889] scummvm/trunk/engines/parallaction/zone.cpp

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sun May 20 15:47:44 CEST 2007


Revision: 26889
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26889&view=rev
Author:   peres001
Date:     2007-05-20 06:47:43 -0700 (Sun, 20 May 2007)

Log Message:
-----------
Fixed embarrassing - and old as time - mistake preventing some items from being deleted from the screen when picked up.

Modified Paths:
--------------
    scummvm/trunk/engines/parallaction/zone.cpp

Modified: scummvm/trunk/engines/parallaction/zone.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/zone.cpp	2007-05-20 13:07:44 UTC (rev 26888)
+++ scummvm/trunk/engines/parallaction/zone.cpp	2007-05-20 13:47:43 UTC (rev 26889)
@@ -494,7 +494,7 @@
 	Zone *z = (Zone*)parm;
 
 	if (z->u.get->_cnv) {
-		if (z->u.get->_cnv->_data0 != NULL) {
+		if (j->_count == 0) {
 			_vm->_gfx->backupGetBackground(z->u.get, z->_left, z->_top);
 		}
 


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