Default compression to off

This commit is contained in:
Timothy Baldridge 2020-08-06 06:15:11 -06:00
parent e14501afdf
commit aaa2275032
2 changed files with 1 additions and 3 deletions

View File

@ -36,8 +36,6 @@ namespace Wabbajack.VirtualFileSystem
if (source.Extension == Consts.OMOD)
return await ExtractAllWithOMOD(source);
Utils.Log($"Extracting {sig}");
switch (sig)
{
case Definitions.FileType.BSA:

View File

@ -105,7 +105,7 @@ namespace Wabbajack
private bool _isPersistent = true;
public bool IsPersistent { get => _isPersistent; set => RaiseAndSetIfChanged(ref _isPersistent, value); }
private bool _useCompression = true;
private bool _useCompression = false;
public bool UseCompression { get => _useCompression; set => RaiseAndSetIfChanged(ref _useCompression, value); }
}