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

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Fri Jul 27 02:25:07 CEST 2007


Revision: 28225
          http://scummvm.svn.sourceforge.net/scummvm/?rev=28225&view=rev
Author:   thebluegr
Date:     2007-07-26 17:25:06 -0700 (Thu, 26 Jul 2007)

Log Message:
-----------
Fixed some MSVC8 warnings

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

Modified: scummvm/trunk/engines/drascula/drascula.cpp
===================================================================
--- scummvm/trunk/engines/drascula/drascula.cpp	2007-07-27 00:18:03 UTC (rev 28224)
+++ scummvm/trunk/engines/drascula/drascula.cpp	2007-07-27 00:25:06 UTC (rev 28225)
@@ -3767,7 +3767,8 @@
 }
 
 void DrasculaEngine::Des_RLE(char *BufferRLE, char *MiVideoRLE) {
-	unsigned int con, X = 0;
+	signed int con = 0;
+	unsigned int X = 0;
 	unsigned int fExit = 0;
 	char ch, rep;
 	while (!fExit) {
@@ -3811,7 +3812,8 @@
 }
 
 char *DrasculaEngine::carga_pcx(char *NamePcc) {
-	unsigned int con, X = 0;
+	signed int con = 0;
+	unsigned int X = 0;
 	unsigned int fExit = 0;
 	char ch, rep;
 	char *AuxPun;


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