[Scummvm-cvs-logs] SF.net SVN: scummvm:[51274] scummvm/trunk/engines/groovie/vdx.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Sun Jul 25 15:32:15 CEST 2010


Revision: 51274
          http://scummvm.svn.sourceforge.net/scummvm/?rev=51274&view=rev
Author:   thebluegr
Date:     2010-07-25 13:32:15 +0000 (Sun, 25 Jul 2010)

Log Message:
-----------
Silenced false positive warning in MSVC

Modified Paths:
--------------
    scummvm/trunk/engines/groovie/vdx.cpp

Modified: scummvm/trunk/engines/groovie/vdx.cpp
===================================================================
--- scummvm/trunk/engines/groovie/vdx.cpp	2010-07-25 13:11:28 UTC (rev 51273)
+++ scummvm/trunk/engines/groovie/vdx.cpp	2010-07-25 13:32:15 UTC (rev 51274)
@@ -489,7 +489,7 @@
 	// Move the pointers to the beginning of the current block
 	int32 blockOff = _origX + _origY * imageWidth;
 	dest += blockOff;
-	byte *fgBuf;
+	byte *fgBuf = 0;
 	if (_flagSeven) {
 		fgBuf = (byte *)_fg->getBasePtr(0, 0) + offset + blockOff;
 		//byte *bgBuf = (byte *)_bg->getBasePtr(0, 0) + offset + blockOff;


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