From a6a4a568de417796797d0dd07fd554e209cd51ca Mon Sep 17 00:00:00 2001 From: luboslenco Date: Sat, 14 Sep 2019 22:31:21 +0200 Subject: [PATCH] Accept .jpeg extension --- Sources/arm/util/Path.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/Sources/arm/util/Path.hx b/Sources/arm/util/Path.hx index 706f5789..6d2bf304 100644 --- a/Sources/arm/util/Path.hx +++ b/Sources/arm/util/Path.hx @@ -40,6 +40,7 @@ class Path { public static function checkTextureFormat(path:String):Bool { var p = path.toLowerCase(); return p.endsWith(".jpg") || + p.endsWith(".jpeg") || p.endsWith(".png") || p.endsWith(".tga") || p.endsWith(".bmp") ||