From cb7e390ff14418a7dbeb51cf3772881bf368143e Mon Sep 17 00:00:00 2001 From: chrisf Date: Tue, 26 Jun 2007 09:41:07 +0000 Subject: [PATCH] good to actually *add* the data chunks to the list. git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1077 993157c7-ee19-0410-b2c4-bb4e9862e678 --- MapViewer/Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MapViewer/Program.cs b/MapViewer/Program.cs index 76f0dd8989..69a788000e 100644 --- a/MapViewer/Program.cs +++ b/MapViewer/Program.cs @@ -69,6 +69,8 @@ namespace MapViewer byte[] src = reader.ReadBytes((int)length); int actualLength = Format80.DecodeInto(new MemoryStream(src), dest); + + chunks.Add(dest); Console.WriteLine("Chunk length: {0}", actualLength); } }