From ff5456356020b940eb8b7038dbed18e6931111d6 Mon Sep 17 00:00:00 2001 From: morkt Date: Mon, 31 Aug 2015 01:06:40 +0400 Subject: [PATCH] (DscDecoder): added Length property. --- ArcFormats/Ethornell/ArcBGI.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ArcFormats/Ethornell/ArcBGI.cs b/ArcFormats/Ethornell/ArcBGI.cs index 320faf9f..8cf0272b 100644 --- a/ArcFormats/Ethornell/ArcBGI.cs +++ b/ArcFormats/Ethornell/ArcBGI.cs @@ -160,6 +160,7 @@ namespace GameRes.Formats.BGI uint m_dec_count; public byte[] Output { get { return m_output; } } + public uint Length { get { return m_dst_size; } } public DscDecoder (ArcView.Frame input) : base (new ArcView.ArcStream (input, input.Offset+0x20, input.Reserved-0x20))