diff --git a/ChangeLog b/ChangeLog index 1faa04e9c..07c110e9c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-09-21 Wolfgang Domröse + + * src/truetype/ttdriver.c (Load_Glyph): Fourth parameter must be + FT_Int32. + * src/truetype/ttgload.c, src/truetype/ttgload.h (TT_Load_Glyph): + Ditto. + 2002-09-19 Wolfgang Domröse More 16bit fixes. diff --git a/src/truetype/ttdriver.c b/src/truetype/ttdriver.c index 1e7bf3178..c61c4eb70 100644 --- a/src/truetype/ttdriver.c +++ b/src/truetype/ttdriver.c @@ -295,7 +295,7 @@ Load_Glyph( TT_GlyphSlot slot, TT_Size size, FT_UShort glyph_index, - FT_UInt load_flags ) + FT_Int32 load_flags ) { FT_Error error; diff --git a/src/truetype/ttgload.c b/src/truetype/ttgload.c index 398bae06e..c5f26542b 100644 --- a/src/truetype/ttgload.c +++ b/src/truetype/ttgload.c @@ -1584,7 +1584,7 @@ TT_Load_Glyph( TT_Size size, TT_GlyphSlot glyph, FT_UShort glyph_index, - FT_UInt load_flags ) + FT_Int32 load_flags ) { SFNT_Service sfnt; TT_Face face; diff --git a/src/truetype/ttgload.h b/src/truetype/ttgload.h index 37445238e..04097134f 100644 --- a/src/truetype/ttgload.h +++ b/src/truetype/ttgload.h @@ -44,7 +44,7 @@ FT_BEGIN_HEADER TT_Load_Glyph( TT_Size size, TT_GlyphSlot glyph, FT_UShort glyph_index, - FT_UInt load_flags ); + FT_Int32 load_flags ); FT_END_HEADER