summaryrefslogtreecommitdiffstats
path: root/libass/ass_render.c
diff options
context:
space:
mode:
Diffstat (limited to 'libass/ass_render.c')
-rw-r--r--libass/ass_render.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libass/ass_render.c b/libass/ass_render.c
index 0f290c6125..8da0d15b2b 100644
--- a/libass/ass_render.c
+++ b/libass/ass_render.c
@@ -1894,7 +1894,7 @@ static int ass_render_event(ass_event_t* event, event_images_t* event_images)
// calculating shift vector
// shift = (position - center)*M - (position - center)
start.x = int_to_d6(info->pos.x + device_x - center.x);
- start.y = int_to_d6(info->pos.y + device_y - center.y);
+ start.y = - int_to_d6(info->pos.y + device_y - center.y);
start_old.x = start.x;
start_old.y = start.y;