[Scummvm-cvs-logs] SF.net SVN: scummvm: [23308] scummvm/trunk/tools/convbdf.c

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Sun Jun 25 12:32:08 CEST 2006


Revision: 23308
Author:   fingolfin
Date:     2006-06-25 03:32:01 -0700 (Sun, 25 Jun 2006)
ViewCVS:  http://svn.sourceforge.net/scummvm/?rev=23308&view=rev

Log Message:
-----------
Patch #1511978: Patch for convbdf.c so it compiles with GCC 2.95.3

Modified Paths:
--------------
    scummvm/trunk/tools/convbdf.c
Modified: scummvm/trunk/tools/convbdf.c
===================================================================
--- scummvm/trunk/tools/convbdf.c	2006-06-25 01:19:34 UTC (rev 23307)
+++ scummvm/trunk/tools/convbdf.c	2006-06-25 10:32:01 UTC (rev 23308)
@@ -725,7 +725,7 @@
 int gen_c_source(struct font* pf, char *path)
 {
 	FILE *ofp;
-	int i;
+	int h, i;
 	int did_defaultchar = 0;
 	int did_syncmsg = 0;
 	time_t t = time(0);
@@ -815,7 +815,7 @@
 			fprintf(ofp, "+\n");
 
 			x = 0;
-			int h = height;
+			h = height;
 			while (h > 0) {
 				if (x == 0) fprintf(ofp, "   |");
 


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