[Structs, Enums] Add ItemType enum

This commit is contained in:
Matt Nadareski
2016-08-29 13:50:55 -07:00
parent 19a210562e
commit 638ba055eb
8 changed files with 51 additions and 38 deletions

View File

@@ -536,7 +536,7 @@ namespace SabreTools.Helper
roms.Add(new Rom
{
Type = "rom",
Type = ItemType.Rom,
Name = reader.Entry.Key,
Machine = new Machine
{
@@ -620,7 +620,7 @@ namespace SabreTools.Helper
Rom rom = new Rom
{
Type = "rom",
Type = ItemType.Rom,
Machine = new Machine
{
Name = Path.GetFileNameWithoutExtension(input).ToLowerInvariant(),