[Scummvm-cvs-logs] SF.net SVN: scummvm:[34102] scummvm/trunk/engines/cine/anim.cpp

buddha_ at users.sourceforge.net buddha_ at users.sourceforge.net
Fri Aug 22 14:11:51 CEST 2008


Revision: 34102
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34102&view=rev
Author:   buddha_
Date:     2008-08-22 12:11:51 +0000 (Fri, 22 Aug 2008)

Log Message:
-----------
Designate fix for bug #2057619 as a hack, as that's what it is.

Modified Paths:
--------------
    scummvm/trunk/engines/cine/anim.cpp

Modified: scummvm/trunk/engines/cine/anim.cpp
===================================================================
--- scummvm/trunk/engines/cine/anim.cpp	2008-08-22 11:49:34 UTC (rev 34101)
+++ scummvm/trunk/engines/cine/anim.cpp	2008-08-22 12:11:51 UTC (rev 34102)
@@ -585,10 +585,10 @@
 
 	transparentColor = getAnimTransparentColor(resourceName);
 
-	// TODO: Merge this special case into getAnimTransparentColor somehow.	
-	// Versions of TITRE.ANI with height 37 use color 0xF for transparency.
-	// Versions of TITRE.ANI with height 57 use color 0x0 for transparency.
-	// Fixes bug #2057619: FW: Glitches in title display of demo (regression).
+	// TODO: Merge this special case hack into getAnimTransparentColor somehow.	
+	// HACK: Versions of TITRE.ANI with height 37 use color 0xF for transparency.
+	//       Versions of TITRE.ANI with height 57 use color 0x0 for transparency.
+	//       Fixes bug #2057619: FW: Glitches in title display of demo (regression).
 	if (scumm_stricmp(resourceName, "TITRE.ANI") == 0 && animHeader.frameHeight == 37) {
 		transparentColor = 0xF;
 	}


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