mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Use new list input
This commit is contained in:
@@ -362,6 +362,7 @@
|
||||
|
||||
// BiosSet
|
||||
Default,
|
||||
BiosDescription,
|
||||
|
||||
// Disk
|
||||
MD5,
|
||||
|
||||
@@ -389,11 +389,11 @@ namespace SabreTools.Library.Data
|
||||
{
|
||||
CRC = 1 << 0,
|
||||
MD5 = 1 << 1,
|
||||
SHA1 = 1 << 2,
|
||||
SHA256 = 1 << 3,
|
||||
SHA384 = 1 << 4,
|
||||
SHA512 = 1 << 5,
|
||||
RIPEMD160 = 1 << 6,
|
||||
RIPEMD160 = 1 << 2,
|
||||
SHA1 = 1 << 3,
|
||||
SHA256 = 1 << 4,
|
||||
SHA384 = 1 << 5,
|
||||
SHA512 = 1 << 6,
|
||||
|
||||
// Special combinations
|
||||
Standard = CRC | MD5 | SHA1,
|
||||
@@ -401,26 +401,6 @@ namespace SabreTools.Library.Data
|
||||
SecureHashes = MD5 | SHA1 | SHA256 | SHA384 | SHA512 | RIPEMD160,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determine what to replace from base DATs
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum ReplaceMode
|
||||
{
|
||||
None = 0x00,
|
||||
|
||||
// Sorted by hash
|
||||
ItemName = 1 << 0,
|
||||
Hash = 1 << 1,
|
||||
|
||||
// Sorted by machine name
|
||||
Description = 1 << 2,
|
||||
MachineType = 1 << 3,
|
||||
Year = 1 << 4,
|
||||
Manufacturer = 1 << 5,
|
||||
Parents = 1 << 6,
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determine which format to output Stats to
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user