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

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sat May 19 22:49:37 CEST 2007


Revision: 26878
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26878&view=rev
Author:   peres001
Date:     2007-05-19 13:49:36 -0700 (Sat, 19 May 2007)

Log Message:
-----------
Fixed regression: wrong job ordering caused a bunch of graphic glitches.

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

Modified: scummvm/trunk/engines/parallaction/parallaction.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/parallaction.cpp	2007-05-19 20:44:18 UTC (rev 26877)
+++ scummvm/trunk/engines/parallaction/parallaction.cpp	2007-05-19 20:49:36 UTC (rev 26878)
@@ -778,7 +778,6 @@
 	(higher priorities values comes first in the list)
 */
 int compareJobPriority(const JobPointer &j1, const JobPointer &j2) {
-	if (j1->_tag == j2->_tag) return 0;
 	return (j1->_tag >= j2->_tag ? -1 : 1);
 }
 


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