mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-15 01:18:13 +00:00
[gvar] minor
This commit is contained in:
parent
20e42a2128
commit
5cab55ca90
1 changed files with 2 additions and 2 deletions
|
@ -655,8 +655,8 @@ no_more_gaps:
|
|||
/* apply specified / inferred deltas to points */
|
||||
for (unsigned int i = 0; i < points.length; i++)
|
||||
{
|
||||
points[i].x += (float) roundf (deltas[i].x);
|
||||
points[i].y += (float) roundf (deltas[i].y);
|
||||
points[i].x += roundf (deltas[i].x);
|
||||
points[i].y += roundf (deltas[i].y);
|
||||
}
|
||||
} while (iterator.move_to_next ());
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue