aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index 3403fc1..027f762 100644
--- a/main.c
+++ b/main.c
@@ -89,8 +89,8 @@ render(struct output *output)
pixman_image_t *pix = pixman_image_create_bits_no_clear(
img_fmt, img_width, img_height, data, img_stride);
- double sx = (double)img_width / width;
- double sy = (double)img_height / height;
+ double sx = (double)img_width / (width * scale);
+ double sy = (double)img_height / (height * scale);
pixman_f_transform_t t;
pixman_transform_t t2;