diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2011-04-04 20:38:47 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2011-04-04 20:38:47 +0200 |
commit | 0a48595b5721790d2010a089e71688e804b78744 (patch) | |
tree | caed72b3d8392b865c6255da9ec08553108aa3f8 /fitz | |
parent | 55808b5a7c0a182e63cbb2ab1536a5c6d321e22a (diff) | |
download | mupdf-0a48595b5721790d2010a089e71688e804b78744.tar.xz |
Update win32 project files after reshuffling.
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/dev_draw.c | 4 |
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); } } |