aboutsummaryrefslogtreecommitdiffstats
path: root/image.c
diff options
context:
space:
mode:
Diffstat (limited to 'image.c')
-rw-r--r--image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.c b/image.c
index fe2c6e8..ddc75df 100644
--- a/image.c
+++ b/image.c
@@ -452,7 +452,7 @@ void img_render(img_t *img)
* - full image drawn on part of window
*/
if (img->x <= 0) {
- sx = -img->x / img->zoom;
+ sx = -img->x / img->zoom + 0.5;
sw = win->w / img->zoom;
dx = 0;
dw = win->w;
@@ -463,7 +463,7 @@ void img_render(img_t *img)
dw = img->w * img->zoom;
}
if (img->y <= 0) {
- sy = -img->y / img->zoom;
+ sy = -img->y / img->zoom + 0.5;
sh = win->h / img->zoom;
dy = 0;
dh = win->h;