From cc6747c5371ed35cf37d20a6dd2e99301e561470 Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 6 Sep 2018 10:26:43 +0400 Subject: [PATCH] added priorities to some formats. --- ArcFormats/Ail/ArcAil.cs | 1 + ArcFormats/AnimeGameSystem/ImageAinos.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/ArcFormats/Ail/ArcAil.cs b/ArcFormats/Ail/ArcAil.cs index bba68433..14c59df7 100644 --- a/ArcFormats/Ail/ArcAil.cs +++ b/ArcFormats/Ail/ArcAil.cs @@ -31,6 +31,7 @@ using GameRes.Utility; namespace GameRes.Formats.Ail { [Export(typeof(ArchiveFormat))] + [ExportMetadata("Priority", -1)] public class DatOpener : ArchiveFormat { public override string Tag { get { return "DAT/Ail"; } } diff --git a/ArcFormats/AnimeGameSystem/ImageAinos.cs b/ArcFormats/AnimeGameSystem/ImageAinos.cs index 6851cfea..31193ba8 100644 --- a/ArcFormats/AnimeGameSystem/ImageAinos.cs +++ b/ArcFormats/AnimeGameSystem/ImageAinos.cs @@ -38,6 +38,7 @@ namespace GameRes.Formats.Ags } [Export(typeof(ImageFormat))] + [ExportMetadata("Priority", -1)] public class CgFormat : ImageFormat { public override string Tag { get { return "CG"; } }