Promote SlotOption

This commit is contained in:
Matt Nadareski
2020-09-02 22:44:54 -07:00
parent f9c072e78b
commit 54e7e4b276
6 changed files with 279 additions and 29 deletions

View File

@@ -536,6 +536,9 @@ namespace SabreTools.Library.DatItems
case ItemType.Slot:
return new Slot();
case ItemType.SlotOption:
return new SlotOption();
case ItemType.SoftwareList:
return new SoftwareList();
@@ -573,6 +576,7 @@ namespace SabreTools.Library.DatItems
ItemType.Rom => new Rom(),
ItemType.Sample => new Sample(),
ItemType.Slot => new Slot(),
ItemType.SlotOption => new SlotOption(),
ItemType.SoftwareList => new SoftwareList(),
ItemType.Sound => new Sound(),
_ => new Rom(),