font->flags is now font->style, font->encoding
authorkramm <kramm>
Fri, 22 Mar 2002 17:30:06 +0000 (17:30 +0000)
committerkramm <kramm>
Fri, 22 Mar 2002 17:30:06 +0000 (17:30 +0000)
lib/example/demofont.c

index c39a5e9..e48b168 100644 (file)
@@ -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);