From b1dfc9ccda9650151b823ee8ebdacbc0f7e45009 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Mon, 25 Feb 2019 05:56:22 -0800 Subject: [PATCH] image-source: Change max loaded slideshow images to 21 Just gives a bit more breathing room before images start having to load. --- plugins/image-source/obs-slideshow.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/image-source/obs-slideshow.c b/plugins/image-source/obs-slideshow.c index 339d06d74..9c97a78c3 100644 --- a/plugins/image-source/obs-slideshow.c +++ b/plugins/image-source/obs-slideshow.c @@ -58,7 +58,7 @@ /* ------------------------------------------------------------------------- */ #define MOD(a,b) ((((a)%(b))+(b))%(b)) -#define MAX_LOADED 15 /* needs to be an odd number */ +#define MAX_LOADED 21 /* needs to be an odd number */ struct image_file_data { char *path;