From dda225e97920e82bcf451c14e0f527d9554c4cc3 Mon Sep 17 00:00:00 2001
From: kramm <kramm>
Date: Sat, 22 Feb 2003 20:22:13 +0000
Subject: [PATCH] enhanced font dumping information.

---
 lib/modules/swfdump.c |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/lib/modules/swfdump.c b/lib/modules/swfdump.c
index 01b1eb2..ebac1a3 100644
--- a/lib/modules/swfdump.c
+++ b/lib/modules/swfdump.c
@@ -43,6 +43,7 @@ void swf_DumpFont(SWFFONT * font)
     printf("Version: %d\n", font->version);
     printf("name: %s\n", font->name);
     printf("characters: %d\n", font->numchars);
+    printf("biggest mapped ascii value: %d\n", font->maxascii);
     printf("layout: %s\n", font->layout?"yes":"no");
     if(font->layout)
     {
@@ -53,6 +54,9 @@ void swf_DumpFont(SWFFONT * font)
 	printf(" kerning records:%d\n", font->layout->kerningcount);
 	printf(" kerning records: (not shown)\n");
     }
+    printf("style: %d\n", font->style);
+    printf("encoding: %d\n", font->encoding);
+    printf("language: %d\n", font->language);
 }
 
 char* swf_TagGetName(TAG*tag)
-- 
1.7.10.4