From 0758496dd8f7d201113f887055d8bc9087a70b35 Mon Sep 17 00:00:00 2001 From: morkt Date: Fri, 27 Oct 2023 04:13:30 +0400 Subject: [PATCH] (Jpeg, Bmp): increase priority. --- GameRes/ImageBMP.cs | 1 + GameRes/ImageJPEG.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/GameRes/ImageBMP.cs b/GameRes/ImageBMP.cs index 8ee0c054..0fc5416c 100644 --- a/GameRes/ImageBMP.cs +++ b/GameRes/ImageBMP.cs @@ -47,6 +47,7 @@ namespace GameRes } [Export(typeof(ImageFormat))] + [ExportMetadata("Priority", 10)] public sealed class BmpFormat : ImageFormat { public override string Tag { get { return "BMP"; } } diff --git a/GameRes/ImageJPEG.cs b/GameRes/ImageJPEG.cs index 3de37066..41ddd25f 100644 --- a/GameRes/ImageJPEG.cs +++ b/GameRes/ImageJPEG.cs @@ -34,6 +34,7 @@ using GameRes.Utility; namespace GameRes { [Export(typeof(ImageFormat))] + [ExportMetadata("Priority", 10)] public class JpegFormat : ImageFormat { public override string Tag { get { return "JPEG"; } }