Commit 426f0e0453f172dc411783356834fb6f01ef6cd7

Werner Lemberg 2014-04-24T07:13:31

Minor.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
diff --git a/src/raster/ftraster.c b/src/raster/ftraster.c
index 8e5483b..abbecb7 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 ) );