From 890f313b379a0f9f41b6d4d5c471245127fae082 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 26 Jun 2001 05:57:19 +0000 Subject: [PATCH] * include/freetype/internal/ftstream.h (FT_GET_OFF3_LE): Fix typo. * src/base/ftcalc.c (ft_div64by32): Fixed the source to work correctly on 16-bit systems. * docs/PATENTS: Added patents disclaimer. This one was missing! * docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release. --- ChangeLog | 12 ++++++++---- include/freetype/internal/ftstream.h | 1 + 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 81570868b..116fa536b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,11 @@ +2001-06-26 Wolfgang Domröse + + * include/freetype/internal/ftstream.h (FT_GET_OFF3_LE): Fix typo. + 2001-06-24 David Turner - * src/base/ftcalc.c (ft_div64by32): fixed the source to work - correctly on 16-bit systems.. + * src/base/ftcalc.c (ft_div64by32): Fixed the source to work + correctly on 16-bit systems. 2001-06-23 Anthony Fok @@ -9,9 +13,9 @@ 2001-06-22 David Turner - * docs/PATENTS: added patents disclaimer. This one was missing !! + * docs/PATENTS: Added patents disclaimer. This one was missing! - * docs/CHANGES, docs/todo: updated for the upcoming 2.0.4 release + * docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release. 2001-06-20 Werner Lemberg diff --git a/include/freetype/internal/ftstream.h b/include/freetype/internal/ftstream.h index 8e8bc329a..a5faefbe2 100644 --- a/include/freetype/internal/ftstream.h +++ b/include/freetype/internal/ftstream.h @@ -165,6 +165,7 @@ FT_BEGIN_HEADER #define FT_GET_OFF3_LE( p ) \ ( (long) ( ( (signed char)(p)[2] << 16 ) | \ + ( (p)[1] << 8 ) | \ (p)[0] ) ) #define FT_GET_LONG_LE( p ) \