summaryrefslogtreecommitdiff
path: root/fitz/dev_draw.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2011-04-04 20:38:47 +0200
committerTor Andersson <tor.andersson@artifex.com>2011-04-04 20:38:47 +0200
commit0a48595b5721790d2010a089e71688e804b78744 (patch)
treecaed72b3d8392b865c6255da9ec08553108aa3f8 /fitz/dev_draw.c
parent55808b5a7c0a182e63cbb2ab1536a5c6d321e22a (diff)
downloadmupdf-0a48595b5721790d2010a089e71688e804b78744.tar.xz
Update win32 project files after reshuffling.
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);
}
}