[Scummvm-cvs-logs] SF.net SVN: scummvm: [26849] scummvm/trunk/engines/agos/vga_ww.cpp

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed May 16 08:36:44 CEST 2007


Revision: 26849
          http://scummvm.svn.sourceforge.net/scummvm/?rev=26849&view=rev
Author:   kirben
Date:     2007-05-15 23:36:43 -0700 (Tue, 15 May 2007)

Log Message:
-----------
Fix regression in Simon the Sorcerer 1/2, that caused various glitches.

Modified Paths:
--------------
    scummvm/trunk/engines/agos/vga_ww.cpp

Modified: scummvm/trunk/engines/agos/vga_ww.cpp
===================================================================
--- scummvm/trunk/engines/agos/vga_ww.cpp	2007-05-16 05:57:26 UTC (rev 26848)
+++ scummvm/trunk/engines/agos/vga_ww.cpp	2007-05-16 06:36:43 UTC (rev 26849)
@@ -73,10 +73,7 @@
 
 		vte = _vgaTimerList;
 		while (vte->delay) {
-			// Skip the animateSprites event in earlier games
-			if (vte->type == 2) {
-				vte++;
-			} else if (vte->sprite_id == _vgaCurSpriteId && (getGameType() == GType_SIMON1 || vte->cur_vga_file == _vgaCurZoneNum)) {
+			if (vte->sprite_id == _vgaCurSpriteId && (getGameType() == GType_SIMON1 || vte->cur_vga_file == _vgaCurZoneNum)) {
 				deleteVgaEvent(vte);
 				break;
 			}


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