summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libass/ass_render.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libass/ass_render.c b/libass/ass_render.c
index 486b58ea14..81ab61ce6e 100644
--- a/libass/ass_render.c
+++ b/libass/ass_render.c
@@ -1951,11 +1951,11 @@ static int ass_render_event(ass_event_t* event, event_images_t* event_images)
glyph_info_t* info = text_info.glyphs + i;
if (info->bm == 0) {
- // calculating shift vector
- shift.x = int_to_d6(info->pos.x + device_x - center.x);
- shift.y = - int_to_d6(info->pos.y + device_y - center.y);
+ // calculating shift vector
+ shift.x = int_to_d6(info->pos.x + device_x - center.x);
+ shift.y = - int_to_d6(info->pos.y + device_y - center.y);
- transform_3d(shift, &info->glyph, &info->outline_glyph, info->frx, info->fry, info->frz);
+ transform_3d(shift, &info->glyph, &info->outline_glyph, info->frx, info->fry, info->frz);
}
}
}