Mercurial > mplayer.hg
changeset 28857:cd7f1297d54f
Remove extraneous braces.
author | greg |
---|---|
date | Sun, 08 Mar 2009 15:30:40 +0000 |
parents | b9edcb7200e7 |
children | 9d8098c10621 |
files | libass/ass_render.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/libass/ass_render.c Sun Mar 08 15:30:27 2009 +0000 +++ b/libass/ass_render.c Sun Mar 08 15:30:40 2009 +0000 @@ -446,12 +446,12 @@ bottom = ((ay+ah) < (by+bh)) ? (ay+ah) : (by+bh); if ((right <= left) || (bottom <= top)) return; - old_left = left-(ax); - old_top = top-(ay); + old_left = left-ax; + old_top = top-ay; w = right-left; h = bottom-top; - cur_left = left-(bx); - cur_top = top-(by); + cur_left = left-bx; + cur_top = top-by; // Query cache memcpy(&hk.a, last_hash, sizeof(*last_hash));