src/fontcache.cpp
branchgamebalance
changeset 9895 7bd07f43b0e3
parent 6505 abcb0580d976
child 6307 f40e88cff863
--- a/src/fontcache.cpp	Mon Mar 19 09:33:17 2007 +0000
+++ b/src/fontcache.cpp	Mon Mar 19 12:38:16 2007 +0000
@@ -278,7 +278,7 @@
 }
 
 
-void InitFreeType(void)
+void InitFreeType()
 {
 	if (StrEmpty(_freetype.small_font) && StrEmpty(_freetype.medium_font) && StrEmpty(_freetype.large_font)) {
 		DEBUG(freetype, 1, "No font faces specified, using sprite fonts instead");
@@ -315,10 +315,10 @@
 }
 
 
-typedef struct GlyphEntry {
+struct GlyphEntry {
 	Sprite *sprite;
 	byte width;
-} GlyphEntry;
+};
 
 
 /* The glyph cache. This is structured to reduce memory consumption.
@@ -492,7 +492,7 @@
 }
 
 
-void InitializeUnicodeGlyphMap(void)
+void InitializeUnicodeGlyphMap()
 {
 	FontSize size;
 	SpriteID base;