Fix progress for decompression

This commit is contained in:
Eric St. John 2016-06-04 01:46:09 -07:00 committed by Livar Cunha
parent e34d988f54
commit 4949cedcc2

View file

@ -249,6 +249,7 @@ namespace SevenZip.Compression.LZMA
}
while (nowPos64 < outSize64)
{
progress.SetProgress(inStream.Position, (long)nowPos64);
// UInt64 next = Math.Min(nowPos64 + (1 << 18), outSize64);
// while(nowPos64 < next)
{