From: kramm Date: Fri, 22 Mar 2002 17:30:06 +0000 (+0000) Subject: font->flags is now font->style, font->encoding X-Git-Tag: xpdf-0-92~56 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=3cf7bdf11b3f690167c55c35fb21eb24018678dc font->flags is now font->style, font->encoding --- diff --git a/lib/example/demofont.c b/lib/example/demofont.c index c39a5e9..e48b168 100644 --- a/lib/example/demofont.c +++ b/lib/example/demofont.c @@ -109,7 +109,8 @@ SWFFONT * Font_Demo_Font(U16 id) f->id = id; f->version = 1; f->name = strdup("Demo Font"); - f->flags = 0x00; + f->style = 0x00; + f->encoding = 0x00; f->numchars = 6; f->maxascii = 256; f->glyph = (SWFGLYPH*)malloc(sizeof(SWFGLYPH)*6);