From fb60862b5872b53efd06693b395da630bfeea50f Mon Sep 17 00:00:00 2001 From: morkt Date: Wed, 18 Mar 2015 05:43:18 +0400 Subject: [PATCH] (PacOpener.TryOpen): set IsPacked property. --- ArcFormats/ArcNexas.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ArcFormats/ArcNexas.cs b/ArcFormats/ArcNexas.cs index 642fb828..ba5e53f5 100644 --- a/ArcFormats/ArcNexas.cs +++ b/ArcFormats/ArcNexas.cs @@ -100,6 +100,7 @@ namespace GameRes.Formats.NeXAS }; if (!entry.CheckPlacement (file.MaxOffset)) return null; + entry.IsPacked = pack_type != 0 && entry.UnpackedSize != entry.Size; dir.Add (entry); offset += 0x4c; }