summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--image.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 4adfd69..8c47198 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION := git-20150118
+VERSION := git-20150206
PREFIX := /usr/local
MANPREFIX := $(PREFIX)/share/man
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;