|
From: <cn...@us...> - 2009-06-25 03:29:10
|
Revision: 373
http://hgengine.svn.sourceforge.net/hgengine/?rev=373&view=rev
Author: cnlohr
Date: 2009-06-25 03:29:06 +0000 (Thu, 25 Jun 2009)
Log Message:
-----------
add default values to font (space, tab, advance)
Modified Paths:
--------------
Mercury2/tools/fonter/main.cpp
Modified: Mercury2/tools/fonter/main.cpp
===================================================================
--- Mercury2/tools/fonter/main.cpp 2009-06-24 10:28:29 UTC (rev 372)
+++ Mercury2/tools/fonter/main.cpp 2009-06-25 03:29:06 UTC (rev 373)
@@ -48,7 +48,7 @@
fprintf( stderr, "Could not open font output file: %s\n", fname );
exit( -1 );
}
- fprintf( fontfile, "%s\n%d\n", pngname, FONTSIZE );
+ fprintf( fontfile, "%s\n%d %f %f %f\n", pngname, FONTSIZE, 4, 15, 80 );
my_read_font( argv[1], imagedata, 64, 64, 16, 16 );
my_write_png( pngname, imagedata, 1024, 1024 );
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|