From de942f3abf6da50b7e85339117bafdd3b5d0a146 Mon Sep 17 00:00:00 2001 From: Araki Ken Date: Mon, 22 Sep 2014 22:55:14 +0900 Subject: Cache image files if at all possible and convert them to sixel when -sixel option is specified. --- image.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image.c b/image.c index 4f8eb0a..b5137e7 100644 --- a/image.c +++ b/image.c @@ -595,7 +595,7 @@ getImage(Image * image, ParsedURL *current, int flag) cache->pid = 0; cache->index = 0; cache->loaded = IMG_FLAG_UNLOADED; - if (enable_inline_image) { + if (enable_inline_image == 1) { if (image->width > 0 && image->width % pixel_per_char_i > 0) image->width += (pixel_per_char_i - image->width % pixel_per_char_i); -- cgit v1.2.3