[SabreTools, Flags, DatFile] Fix flags for deeper hashes

This commit is contained in:
Matt Nadareski
2017-02-27 12:08:35 -08:00
parent 980651c3e6
commit 79a7dd54ab
2 changed files with 3 additions and 3 deletions

View File

@@ -256,8 +256,8 @@ namespace SabreTools.Helper.Data
SHA512 = 0x0020,
// Special combinations
Standard = CRC & MD5 & SHA1,
DeepHashes = MD5 & SHA1 & SHA256 & SHA384 & SHA512,
Standard = CRC | MD5 | SHA1,
DeepHashes = MD5 | SHA1 | SHA256 | SHA384 | SHA512,
}
#endregion

View File

@@ -119,7 +119,7 @@ namespace SabreTools
usegame = true;
DatFormat datFormat = 0x0;
DiffMode diffMode = 0x0;
Hash omitFromScan = Hash.SHA256 & Hash.SHA384 & Hash.SHA512; // Should be set to 0x0 later
Hash omitFromScan = Hash.SHA256 | Hash.SHA384 | Hash.SHA512; // Should be set to 0x0 later
Hash stripHash = 0x0;
OutputFormat outputFormat = OutputFormat.Folder;
SplitType splitType = SplitType.None;