1
0
mirror of synced 2025-01-19 09:17:30 +01:00

Fix some compression issues from the tools menu.

This commit is contained in:
KillzXGaming 2020-05-05 17:03:26 -04:00
parent b8f000dd1f
commit 2464d6f5ad

View File

@ -108,7 +108,7 @@ namespace Toolbox.Library.IO
string ext = Compress ? ".comp" : ".dec";
if (compressionFormat.Extension.Length > 0 && Compress)
ext = compressionFormat.Extension[0];
ext = compressionFormat.Extension[0].Replace("*", string.Empty);
List<string> failedFiles = new List<string>();
if (fileNames.Length > 1)