Update incorrect ChangeLog entry.
This commit is contained in:
parent
2df73b397d
commit
0579d545af
|
@ -16,11 +16,11 @@
|
||||||
|
|
||||||
2017-12-18 Matthias Clasen <matthias.clasen@gmail.com>
|
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
|
* src/truetype/ttgxvar.c (ft_var_to_normalized): Trace number of
|
||||||
design coordinates.
|
design coordinates.
|
||||||
Simplify code.
|
Use clamped value.
|
||||||
|
|
||||||
2017-12-18 Werner Lemberg <wl@gnu.org>
|
2017-12-18 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
|
|
@ -1753,7 +1753,7 @@
|
||||||
a->minimum / 65536.0,
|
a->minimum / 65536.0,
|
||||||
a->maximum / 65536.0 ));
|
a->maximum / 65536.0 ));
|
||||||
|
|
||||||
if ( coord > a->maximum)
|
if ( coord > a->maximum )
|
||||||
coord = a->maximum;
|
coord = a->maximum;
|
||||||
else
|
else
|
||||||
coord = a->minimum;
|
coord = a->minimum;
|
||||||
|
|
Loading…
Reference in New Issue