From b2e296e4fed8075201c64b960d4375c5d91ce88e Mon Sep 17 00:00:00 2001 From: Thomas Osterland Date: Sat, 24 Mar 2018 10:02:02 +0100 Subject: [PATCH] removed if -> now slideshow supports jpeg --- i3lock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/i3lock.c b/i3lock.c index 0fb2194..b29dce0 100644 --- a/i3lock.c +++ b/i3lock.c @@ -1118,11 +1118,11 @@ void load_slideshow_images(const char *path) { strcat(path_to_image, "/"); strcat(path_to_image, dir->d_name); - if (verify_png_image(path_to_image)) { - img_slideshow[file_count] = load_image(path_to_image); + img_slideshow[file_count] = load_image(path_to_image); + + if (img_slideshow[file_count] != NULL) { ++file_count; } - } slideshow_image_count = file_count;