[MPlayer-cvslog] r22239 - trunk/libass/ass_render.c
eugeni
subversion at mplayerhq.hu
Sat Feb 17 00:18:47 CET 2007
Author: eugeni
Date: Sat Feb 17 00:18:47 2007
New Revision: 22239
Modified:
trunk/libass/ass_render.c
Log:
Restore a minus sign that was lost in r22231.
Modified: trunk/libass/ass_render.c
==============================================================================
--- trunk/libass/ass_render.c (original)
+++ trunk/libass/ass_render.c Sat Feb 17 00:18:47 2007
@@ -1894,7 +1894,7 @@
// 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;
More information about the MPlayer-cvslog
mailing list