Remove redundant condition in white hot path.

This commit is contained in:
Michael Drake 2016-01-20 18:27:15 +00:00
parent 54c153246c
commit 018adc2f5e
1 changed files with 1 additions and 1 deletions

View File

@ -2071,7 +2071,7 @@ void find_sides(struct box *fl, int y0, int y1,
*x0 = fx1;
*left = fl;
}
} else if (fl->type == BOX_FLOAT_RIGHT) {
} else {
fx0 = fl->x;
if (fx0 < *x1) {
*x1 = fx0;