Quick fix for decompressing incase a check fails or is inaccurate

This commit is contained in:
KillzXGaming 2019-09-18 21:13:02 -04:00
parent 6ec78fa2c5
commit bb436b35e8

View file

@ -183,6 +183,9 @@ namespace Toolbox.Library.IO
if (stream.Length < 8) return null;
//Try catch incase it fails, continute to load the file anyways if the check may be false
try
{
//Check all supported compression formats and decompress. Then loop back
if (!Compressed)
{
@ -201,6 +204,12 @@ namespace Toolbox.Library.IO
}
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
stream.Position = streamStartPos;
foreach (IFileFormat fileFormat in FileManager.GetFileFormats())