From 54023174b6937afd7b8871688123e737e7b0e540 Mon Sep 17 00:00:00 2001 From: scientificworld Date: Mon, 26 Jan 2026 19:25:28 +0800 Subject: [PATCH] fix: add .exe extension to EVB to fix priority See implementation of FormatCatalog.Instance.FindFormats for details. --- ArcFormats/Enigma/ArcEVB.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ArcFormats/Enigma/ArcEVB.cs b/ArcFormats/Enigma/ArcEVB.cs index f833329f..a4adfc95 100644 --- a/ArcFormats/Enigma/ArcEVB.cs +++ b/ArcFormats/Enigma/ArcEVB.cs @@ -48,6 +48,7 @@ namespace GameRes.Formats.Enigma { public EvbPackOpener() { Signatures = new uint[] { 0x425645, 0x905a4d, 0 }; + Extensions = new[] { "exe" }; } public override ArcFile TryOpen(ArcView file) {