[SabreTools] Implement flags further down

This commit is contained in:
Matt Nadareski
2017-01-11 16:18:48 -08:00
parent 7a9b4f05db
commit 50df38026a
3 changed files with 105 additions and 92 deletions

View File

@@ -264,12 +264,12 @@ namespace SabreTools.Helper.Data
[Flags]
public enum ItemStatus
{
NULL = -0x01, // This is a fake flag that is used for filter only
None = 0x00,
Good = 0x01,
BadDump = 0x02,
Nodump = 0x04,
Verified = 0x08,
NULL = 0x00, // This is a fake flag that is used for filter only
None = 0x01,
Good = 0x02,
BadDump = 0x04,
Nodump = 0x08,
Verified = 0x10,
}
/// <summary>
@@ -278,11 +278,11 @@ namespace SabreTools.Helper.Data
[Flags]
public enum MachineType
{
NULL = -0x01, // This is a fake flag used for filter only
None = 0x00,
Bios = 0x01,
Device = 0x02,
Mechanical = 0x04,
NULL = 0x00, // This is a fake flag used for filter only
None = 0x01,
Bios = 0x02,
Device = 0x04,
Mechanical = 0x08,
}
#endregion