From 60cbb69c7c40efd72234ef10e77767347d8df6c4 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sun, 18 Nov 2018 22:07:00 -0300 Subject: [PATCH] Increase number of image loaders (why was it this low..), fixes #19037 --- core/io/image_loader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/io/image_loader.h b/core/io/image_loader.h index 561f275e0c5..d95a483c0d1 100644 --- a/core/io/image_loader.h +++ b/core/io/image_loader.h @@ -71,7 +71,7 @@ public: class ImageLoader { enum { - MAX_LOADERS = 8 + MAX_LOADERS = 32 }; friend class ResourceFormatLoaderImage; static ImageFormatLoader *loader[MAX_LOADERS];