mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[SabreTools, Flags, DatFile] Fix flags for deeper hashes
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user