aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.c b/main.c
index 8e13b5b..8718978 100644
--- a/main.c
+++ b/main.c
@@ -21,6 +21,7 @@
#define LOG_ENABLE_DBG 1
#include "log.h"
#include "png-wbg.h"
+#include "jpg.h"
#include "shm.h"
/* Top-level globals */
@@ -311,7 +312,9 @@ main(int argc, const char *const *argv)
}
const char *image_path = argv[1];
- image = png_load(image_path);
+ image = jpg_load(image_path);
+ if (image == NULL)
+ image = png_load(image_path);
if (image == NULL) {
LOG_ERR("%s: failed to load", image_path);
return EXIT_FAILURE;