mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2025-02-16 22:08:26 +00:00
Fix some compression issues from the tools menu.
This commit is contained in:
parent
b8f000dd1f
commit
2464d6f5ad
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue