Restore a minus sign that was lost in r22231.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@22239 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
eugeni 2007-02-16 23:18:47 +00:00
parent 6a1bc9678e
commit 885b7a1d4e
1 changed files with 1 additions and 1 deletions

View File

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