Update incorrect ChangeLog entry.

GSoC-2017-kushal
Werner Lemberg 7 years ago
parent 2df73b397d
commit 0579d545af
  1. 4
      ChangeLog
  2. 2
      src/truetype/ttgxvar.c

@ -16,11 +16,11 @@
2017-12-18 Matthias Clasen <matthias.clasen@gmail.com>
[truetype] Minor code beautification.
[truetype] Fix clamping, minor tracing code beautification.
* src/truetype/ttgxvar.c (ft_var_to_normalized): Trace number of
design coordinates.
Simplify code.
Use clamped value.
2017-12-18 Werner Lemberg <wl@gnu.org>

@ -1753,7 +1753,7 @@
a->minimum / 65536.0,
a->maximum / 65536.0 ));
if ( coord > a->maximum)
if ( coord > a->maximum )
coord = a->maximum;
else
coord = a->minimum;

Loading…
Cancel
Save