mirror of
https://github.com/mpv-player/mpv
synced 2025-01-02 04:42:10 +00:00
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:
parent
6a1bc9678e
commit
885b7a1d4e
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user