From 33f3d8128fa83ba78d4eb0ee66b5ce3638d49b51 Mon Sep 17 00:00:00 2001 From: morkt Date: Fri, 6 Jul 2018 15:07:35 +0400 Subject: [PATCH] (AI5WIN): entries with "x" extension are compressed. --- ArcFormats/elf/ArcAi5Win.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/elf/ArcAi5Win.cs b/ArcFormats/elf/ArcAi5Win.cs index a2ad1ed0..87b7ced5 100644 --- a/ArcFormats/elf/ArcAi5Win.cs +++ b/ArcFormats/elf/ArcAi5Win.cs @@ -87,7 +87,7 @@ namespace GameRes.Formats.Elf public override Stream OpenEntry (ArcFile arc, Entry entry) { var input = arc.File.CreateStream (entry.Offset, entry.Size); - if (entry.Name.HasAnyOfExtensions ("mes", "lib", "a", "a6", "msk")) + if (entry.Name.HasAnyOfExtensions ("mes", "lib", "a", "a6", "msk", "x")) return new LzssStream (input); return input; }