forked from minhngoc25a/freetype2
pfr: Fix a data type mismatching with its source.
This commit is contained in:
parent
471980d9dc
commit
c4420d97f4
|
@ -1,3 +1,11 @@
|
|||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
pfr: Fix a data type mismatching with its source.
|
||||
|
||||
* src/pfr/pfrtypes.h: The type of PFR_PhyFont->bct_offset
|
||||
is extended from FT_UInt32 to FT_Long, because it is
|
||||
loaded by FT_STREAM_POS() in pfr_phy_font_load().
|
||||
|
||||
2009-07-31 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
|
||||
|
||||
smooth: Improve the format in debug message.
|
||||
|
|
|
@ -260,7 +260,7 @@ FT_BEGIN_HEADER
|
|||
PFR_KernItem* kern_items_tail;
|
||||
|
||||
/* not part of the spec, but used during load */
|
||||
FT_UInt32 bct_offset;
|
||||
FT_Long bct_offset;
|
||||
FT_Byte* cursor;
|
||||
|
||||
} PFR_PhyFontRec, *PFR_PhyFont;
|
||||
|
|
Loading…
Reference in New Issue