From 14e294553dc247f759123d3252652ed5c9063499 Mon Sep 17 00:00:00 2001 From: AlexVinS Date: Mon, 4 Feb 2019 12:14:59 +0300 Subject: [PATCH] Enabled GIF format for images (not GIF-animations) as requested by user. --- lib/filesystem/ResourceID.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/filesystem/ResourceID.cpp b/lib/filesystem/ResourceID.cpp index 0df4e27de..f85340f99 100644 --- a/lib/filesystem/ResourceID.cpp +++ b/lib/filesystem/ResourceID.cpp @@ -130,6 +130,7 @@ EResType::Type EResTypeHelper::getTypeFromExtension(std::string extension) {".FNT", EResType::BMP_FONT}, {".TTF", EResType::TTF_FONT}, {".BMP", EResType::IMAGE}, + {".GIF", EResType::IMAGE}, {".JPG", EResType::IMAGE}, {".PCX", EResType::IMAGE}, {".PNG", EResType::IMAGE},