From 036c19fabedff7a0ae0ea1c3a5425de0de6301e1 Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 5 Aug 2015 11:53:05 +0400 Subject: [PATCH] (FormatCatalog): images are prioritized over archives in format lookups. --- GameRes/GameRes.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GameRes/GameRes.cs b/GameRes/GameRes.cs index c9d9e296..ee6b7f1c 100644 --- a/GameRes/GameRes.cs +++ b/GameRes/GameRes.cs @@ -305,8 +305,8 @@ namespace GameRes //Fill the imports of this object container.ComposeParts (this); - AddResourceImpl (m_arc_formats); AddResourceImpl (m_image_formats); + AddResourceImpl (m_arc_formats); AddResourceImpl (m_audio_formats); AddResourceImpl (m_script_formats); }