From: boehme Date: Tue, 28 May 2002 23:09:17 +0000 (+0000) Subject: fix: wide-codes in AddGlyph(...) X-Git-Tag: release-0-4-0~69 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=0138bdb91fabf3bcda3c8f04a3ee5554f916a22b fix: wide-codes in AddGlyph(...) --- diff --git a/lib/example/dumpfont.c b/lib/example/dumpfont.c index b8f7520..09985fa 100644 --- a/lib/example/dumpfont.c +++ b/lib/example/dumpfont.c @@ -83,7 +83,7 @@ void DumpFont(SWFFONT * f,char * name) for (i=0;inumchars;i++) if (f->glyph[i].shape) - { printf(" addGlyph(f,%3i, 0x%02x,%4i, &Glyphs_%s[0x%04x],%4i); // %c\n", + { printf(" addGlyph(f,%3i, 0x%03x,%4i, &Glyphs_%s[0x%04x],%4i); // %c\n", i, f->glyph2ascii[i], f->glyph[i].advance, name, gpos[i], f->glyph[i].shape->bitlen,PRINTABLE(f->glyph2ascii[i])); }