summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/fitz/draw-affine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fitz/draw-affine.c b/source/fitz/draw-affine.c
index 58a48442..04f02f83 100644
--- a/source/fitz/draw-affine.c
+++ b/source/fitz/draw-affine.c
@@ -6,7 +6,7 @@
#include <assert.h>
/* Number of fraction bits for fixed point math */
-#define PREC 16
+#define PREC 14
#define MASK ((1<<PREC)-1)
#define ONE (1<<PREC)
#define HALF (1<<(PREC-1))