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

kirben at users.sourceforge.net kirben at users.sourceforge.net
Wed Apr 19 23:39:05 CEST 2006


Revision: 22050
Author:   kirben
Date:     2006-04-19 23:38:46 -0700 (Wed, 19 Apr 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=22050&view=rev

Log Message:
-----------
_rejectCount should only be incremented in checkNoOverWrite()

Modified Paths:
--------------
    scummvm/trunk/engines/simon/simon.cpp
Modified: scummvm/trunk/engines/simon/simon.cpp
===================================================================
--- scummvm/trunk/engines/simon/simon.cpp	2006-04-20 05:54:25 UTC (rev 22049)
+++ scummvm/trunk/engines/simon/simon.cpp	2006-04-20 06:38:46 UTC (rev 22050)
@@ -2231,15 +2231,12 @@
 
 	if (vpe->vgaFile1 < end && vpe->vgaFile1End > _vgaBufFreeStart) {
 		_rejectBlock = true;
-		_rejectCount++;
 		_vgaBufFreeStart = vpe->vgaFile1End;
 	} else if (vpe->vgaFile2 < end && vpe->vgaFile2End > _vgaBufFreeStart) {
 		_rejectBlock = true;
-		_rejectCount++;
 		_vgaBufFreeStart = vpe->vgaFile2End;
 	} else if (vpe->sfxFile && vpe->sfxFile < end && vpe->sfxFileEnd > _vgaBufFreeStart) {
 		_rejectBlock = true;
-		_rejectCount++;
 		_vgaBufFreeStart = vpe->sfxFileEnd;
 	} else {
 		_rejectBlock = false;


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