# HG changeset patch # User greg # Date 1236526240 0 # Node ID cd7f1297d54f3232e9640710351c72c61652f5c8 # Parent b9edcb7200e7f856de467e000d3da1f253c59d26 Remove extraneous braces. diff -r b9edcb7200e7 -r cd7f1297d54f libass/ass_render.c --- 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));