fixes alignment while reading from MIX

git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1098 993157c7-ee19-0410-b2c4-bb4e9862e678
This commit is contained in:
bob
2007-07-05 09:35:31 +00:00
parent 7196c1971c
commit c20e404aa1
3 changed files with 37 additions and 45 deletions

View File

@@ -52,7 +52,6 @@ namespace OpenRa.FileFormats
}
byte[] data = Convert.FromBase64String( sb.ToString() );
Console.WriteLine( "Format80 data: {0}", data.Length );
List<byte[]> chunks = new List<byte[]>();
@@ -69,7 +68,6 @@ namespace OpenRa.FileFormats
int actualLength = Format80.DecodeInto( new MemoryStream( src ), dest );
chunks.Add( dest );
Console.WriteLine( "Chunk length: {0}", actualLength );
}
}
catch( EndOfStreamException ) { }