From: kramm Date: Mon, 6 Oct 2008 12:58:23 +0000 (+0000) Subject: use int for font numchars/maxascii fields X-Git-Tag: buttons-working~12 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=17264d2dc6d4d56a5e4fe5f1ad721142d397ea0b use int for font numchars/maxascii fields --- 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;