Remove extraneous braces.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28892 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
greg 2009-03-08 15:30:40 +00:00
parent af0797010e
commit 2a70f019e9
1 changed files with 4 additions and 4 deletions

View File

@ -446,12 +446,12 @@ static void render_overlap(ass_image_t** last_tail, ass_image_t** tail, bitmap_h
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));