From 17264d2dc6d4d56a5e4fe5f1ad721142d397ea0b Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 6 Oct 2008 12:58:23 +0000 Subject: [PATCH] use int for font numchars/maxascii fields --- lib/rfxswf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rfxswf.h b/lib/rfxswf.h index 1b7d6a2..56a1876 100644 --- a/lib/rfxswf.h +++ b/lib/rfxswf.h @@ -515,8 +515,8 @@ typedef struct _SWFFONT U8 version; // 0 = not set, 1 = definefont, 2 = definefont2 U8 * name; SWFLAYOUT * layout; - U16 numchars; - U16 maxascii; // highest mapped ascii value + int numchars; + int maxascii; // highest mapped ascii/unicode value U8 style; U8 encoding; -- 1.7.10.4