[Items/] Make machine vars more invisible

This commit is contained in:
Matt Nadareski
2017-10-09 13:46:28 -07:00
parent 9200bdb6ea
commit f89026a6d0
6 changed files with 103 additions and 31 deletions

View File

@@ -46,7 +46,7 @@ namespace SabreTools.Library.Items
public override object Clone()
{
BiosSet item = new BiosSet()
return new BiosSet()
{
Name = this.Name,
Type = this.Type,
@@ -61,6 +61,21 @@ namespace SabreTools.Library.Items
AreaName = this.AreaName,
AreaSize = this.AreaSize,
MachineName = this.MachineName,
Comment = this.Comment,
MachineDescription = this.MachineDescription,
Year = this.Year,
Manufacturer = this.Manufacturer,
RomOf = this.RomOf,
CloneOf = this.CloneOf,
SampleOf = this.SampleOf,
SourceFile = this.SourceFile,
Runnable = this.Runnable,
Board = this.Board,
RebuildTo = this.RebuildTo,
Devices = this.Devices,
MachineType = this.MachineType,
SystemID = this.SystemID,
System = this.System,
SourceID = this.SourceID,
@@ -69,9 +84,6 @@ namespace SabreTools.Library.Items
Description = this.Description,
Default = this.Default,
};
item.CopyMachineInformation(this);
return item;
}
#endregion