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

peres001 at users.sourceforge.net peres001 at users.sourceforge.net
Sun Jan 21 12:05:23 CET 2007


Revision: 25146
          http://scummvm.svn.sourceforge.net/scummvm/?rev=25146&view=rev
Author:   peres001
Date:     2007-01-21 03:05:22 -0800 (Sun, 21 Jan 2007)

Log Message:
-----------
fixed ordering of engine jobs: no more known graphics glitches

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

Modified: scummvm/trunk/engines/parallaction/parallaction.cpp
===================================================================
--- scummvm/trunk/engines/parallaction/parallaction.cpp	2007-01-21 11:00:07 UTC (rev 25145)
+++ scummvm/trunk/engines/parallaction/parallaction.cpp	2007-01-21 11:05:22 UTC (rev 25146)
@@ -362,7 +362,7 @@
 void Parallaction::runGame() {
 //	printf("runGame()\n");
 
-	addJob(jobEraseAnimations, (void*)1, JOBPRIORITY_RUNSTUFF);
+	addJob(jobEraseAnimations, (void*)1, JOBPRIORITY_ERASEANIMATIONS);
 	_jRunScripts = addJob(jobRunScripts, 0, JOBPRIORITY_RUNSTUFF);
 	addJob(jobDisplayAnimations, 0, JOBPRIORITY_DRAWANIMATIONS);
 

Modified: scummvm/trunk/engines/parallaction/parallaction.h
===================================================================
--- scummvm/trunk/engines/parallaction/parallaction.h	2007-01-21 11:00:07 UTC (rev 25145)
+++ scummvm/trunk/engines/parallaction/parallaction.h	2007-01-21 11:05:22 UTC (rev 25146)
@@ -41,6 +41,7 @@
 #define JOBPRIORITY_ADDREMOVEITEMS		17
 #define JOBPRIORITY_TOGGLEDOOR			18
 #define JOBPRIORITY_WALK				19
+#define JOBPRIORITY_ERASEANIMATIONS		20
 #define JOBPRIORITY_HIDEINVENTORY		20
 #define JOBPRIORITY_ERASEMOUSE			21
 


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