[VARC] Another rounding fix

This commit is contained in:
Behdad Esfahbod 2026-02-10 20:50:50 -07:00
parent 0505a23487
commit 75d65f2c05

View file

@ -3025,8 +3025,8 @@ Skip_Axis_Override:
for ( i = 0; i < slot->outline.n_points; i++ )
{
slot->outline.points[i].x >>= 6;
slot->outline.points[i].y >>= 6;
slot->outline.points[i].x = ( slot->outline.points[i].x + 32 ) >> 6;
slot->outline.points[i].y = ( slot->outline.points[i].y + 32 ) >> 6;
}
}