From 426f0e0453f172dc411783356834fb6f01ef6cd7 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Thu, 24 Apr 2014 07:13:31 +0200 Subject: [PATCH] Minor. --- src/raster/ftraster.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/raster/ftraster.c b/src/raster/ftraster.c index 8e5483b7e..abbecb70b 100644 --- a/src/raster/ftraster.c +++ b/src/raster/ftraster.c @@ -2295,8 +2295,8 @@ e1 = TRUNC( CEILING( x1 ) ); - if ( x2 - x1 - ras.precision <= ras.precision_jitter && - dropOutControl != 2 ) + if ( dropOutControl != 2 && + x2 - x1 - ras.precision <= ras.precision_jitter ) e2 = e1; else e2 = TRUNC( FLOOR( x2 ) );