Change Supported to Enum

This commit is contained in:
Matt Nadareski
2020-08-22 13:31:13 -07:00
parent b30173ba55
commit d4be402380
9 changed files with 196 additions and 68 deletions

View File

@@ -483,7 +483,7 @@ namespace SabreTools.Library.DatFiles
#region SoftwareList
case "Machine.Supported":
machine.Supported = value.AsYesNo();
machine.Supported = value.AsSupported();
break;
case "Machine.SharedFeatures":
@@ -498,7 +498,7 @@ namespace SabreTools.Library.DatFiles
break;
case "Machine.DipSwitches":
machine.DipSwitches = new List<SoftwareListDipSwitch>();
machine.DipSwitches = new List<ListXMLDipSwitch>();
// TODO: There is no way this would work... Just use empty for now
break;