ref: 890f313b379a0f9f41b6d4d5c471245127fae082
parent: 2bf99344c335706cf5f2f7733fd27ebd14d3aaa6
author: Werner Lemberg <[email protected]>
date: Tue Jun 26 01:57:19 EDT 2001
* 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.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
+2001-06-26 Wolfgang Domr�se <[email protected]>
+
+ * include/freetype/internal/ftstream.h (FT_GET_OFF3_LE): Fix typo.
+
2001-06-24 David Turner <[email protected]>
- * 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 <[email protected]>
@@ -9,9 +13,9 @@
2001-06-22 David Turner <[email protected]>
- * 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 <[email protected]>
--- a/include/freetype/internal/ftstream.h
+++ b/include/freetype/internal/ftstream.h
@@ -165,6 +165,7 @@
#define FT_GET_OFF3_LE( p ) \
( (long) ( ( (signed char)(p)[2] << 16 ) | \
+ ( (p)[1] << 8 ) | \
(p)[0] ) )
#define FT_GET_LONG_LE( p ) \