forked from minhngoc25a/freetype2
fixed the 64-bits division computation for 16-bits systems
This commit is contained in:
parent
609a20d0fa
commit
08e755bbf0
12
ChangeLog
12
ChangeLog
|
@ -1,11 +1,17 @@
|
|||
2001-06-24 David Turner <david@freetype.org>
|
||||
|
||||
* src/base/ftcalc.c (ft_div64by32): fixed the source to work
|
||||
correctly on 16-bit systems..
|
||||
|
||||
2001-06-23 Anthony Fok <fok@debian.org>
|
||||
|
||||
* debian/*: Added Debian package build directory for 2.0.4.
|
||||
|
||||
2001-06-22 David Turner <david@freetype.org>
|
||||
2001-06-22 David Turner <david@freetype.org>
|
||||
|
||||
* docs/PATENTS: Added patents disclaimer. This one was missing!
|
||||
* docs/CHANGES, docs/todo: Updated for the upcoming 2.0.4 release.
|
||||
* docs/PATENTS: added patents disclaimer. This one was missing !!
|
||||
|
||||
* docs/CHANGES, docs/todo: updated for the upcoming 2.0.4 release
|
||||
|
||||
2001-06-20 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
|
|
|
@ -299,8 +299,8 @@
|
|||
FT_UInt32 lo,
|
||||
FT_UInt32 y )
|
||||
{
|
||||
FT_UInt r, q;
|
||||
FT_Int i;
|
||||
FT_UInt32 r, q;
|
||||
FT_Int i;
|
||||
|
||||
|
||||
q = 0;
|
||||
|
|
Loading…
Reference in New Issue