summaryrefslogtreecommitdiff
path: root/fitz/dev_draw.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/dev_draw.c')
-rw-r--r--fitz/dev_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fitz/dev_draw.c b/fitz/dev_draw.c
index bf49be08..ee74033d 100644
--- a/fitz/dev_draw.c
+++ b/fitz/dev_draw.c
@@ -960,8 +960,8 @@ fz_drawendtile(void *user)
for (x = x0; x < x1; x++)
{
ttm = fz_concat(fz_translate(x * xstep, y * ystep), ctm);
- tile->x = roundf(ttm.e);
- tile->y = roundf(ttm.f);
+ tile->x = ttm.e;
+ tile->y = ttm.f;
fz_paintpixmapbbox(dev->dest, tile, 255, dev->scissor);
}
}