From 3cf7bdf11b3f690167c55c35fb21eb24018678dc Mon Sep 17 00:00:00 2001
From: kramm <kramm>
Date: Fri, 22 Mar 2002 17:30:06 +0000
Subject: [PATCH] font->flags is now font->style, font->encoding

---
 lib/example/demofont.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

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);
-- 
1.7.10.4