From c1bfb002491ba82c0f7d707f77adb9448e3ed6fb Mon Sep 17 00:00:00 2001 From: morkt Date: Thu, 26 Nov 2015 02:25:00 +0400 Subject: [PATCH] (TryOpen): set IsPacked property. --- ArcFormats/Propeller/ArcMGR.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ArcFormats/Propeller/ArcMGR.cs b/ArcFormats/Propeller/ArcMGR.cs index 42c011a3..c99752c9 100644 --- a/ArcFormats/Propeller/ArcMGR.cs +++ b/ArcFormats/Propeller/ArcMGR.cs @@ -83,6 +83,7 @@ namespace GameRes.Formats.Propeller { entry.UnpackedSize = file.View.ReadUInt32 (entry.Offset); entry.Size = file.View.ReadUInt32 (entry.Offset+4); + entry.IsPacked = true; if (entry.UnpackedSize < 0x36 || entry.Size > file.MaxOffset-entry.Offset) return null; entry.Offset += 8;