[gvar] minor

This commit is contained in:
Ebrahim Byagowi 2020-08-06 18:54:58 +04:30 committed by GitHub
parent 20e42a2128
commit 5cab55ca90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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 ());