[ALL] DatItem/Machine cleanup and descriptions

This commit is contained in:
Matt Nadareski
2019-01-08 12:11:55 -08:00
parent 9e3df30b90
commit 1768370199
29 changed files with 1402 additions and 1254 deletions

View File

@@ -27,8 +27,8 @@ namespace SabreTools.Library.DatItems
return new Sample()
{
Name = this.Name,
Type = this.Type,
Dupe = this.Dupe,
ItemType = this.ItemType,
DupeType = this.DupeType,
Supported = this.Supported,
Publisher = this.Publisher,
@@ -68,7 +68,7 @@ namespace SabreTools.Library.DatItems
public override bool Equals(DatItem other)
{
// If we don't have a sample, return false
if (_itemType != other.Type)
if (_itemType != other.ItemType)
{
return false;
}