From: kramm Date: Sat, 12 Jun 2004 16:02:21 +0000 (+0000) Subject: removed a debug statement. X-Git-Tag: release-0-6-0~122 X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;h=151e7df6db3719bed920fa13ac149080c75f9c8a;p=swftools.git removed a debug statement. --- diff --git a/lib/modules/swffont.c b/lib/modules/swffont.c index 7ed72ed..d039ae4 100644 --- a/lib/modules/swffont.c +++ b/lib/modules/swffont.c @@ -256,7 +256,6 @@ SWFFONT* swf_LoadTrueTypeFont(char*filename) FT_Done_Glyph(glyph); font->glyph2ascii[font->numchars] = font->glyph2ascii[t]; glyph2glyph[t] = font->numchars; - printf("%d %d\n", t, glyph2glyph[t]); font->numchars++; } /* notice: if skipunused is true, font->glyph2ascii, font->glyphnames and font->layout->bounds will @@ -266,7 +265,6 @@ SWFFONT* swf_LoadTrueTypeFont(char*filename) for(t=0;tmaxascii;t++) { if(font->ascii2glyph[t]>=0) { font->ascii2glyph[t] = glyph2glyph[font->ascii2glyph[t]]; - printf("ascii %d -> glyph %d\n", t, font->ascii2glyph[t]); } } free(glyph2glyph);