Reduce redundant code

This commit is contained in:
Matt Nadareski
2020-09-18 00:45:08 -07:00
parent 7acadcddd5
commit 4bb768f258
12 changed files with 43 additions and 63 deletions

View File

@@ -276,11 +276,12 @@ namespace SabreTools.Library.DatFiles
/// <summary>
/// Determines what sort of files get externally hashed
/// </summary>
/// TODO: Can FileType be used instead?
[Flags]
public enum TreatAsFiles
public enum TreatAsFile
{
CHDs = 1 << 0,
Archives = 1 << 1,
AaruFormats = 1 << 2,
CHD = 1 << 0,
Archive = 1 << 1,
AaruFormat = 1 << 2,
}
}