Promote SoftwareList

This commit is contained in:
Matt Nadareski
2020-08-31 23:26:07 -07:00
parent 3e9b4e510c
commit 6bc91732e6
14 changed files with 288 additions and 167 deletions

View File

@@ -53,7 +53,7 @@ namespace SabreTools.Library.DatItems
#region Constructors
/// <summary>
/// Create a default, empty Sample object
/// Create a default, empty BiosSet object
/// </summary>
public BiosSet()
{
@@ -106,14 +106,14 @@ namespace SabreTools.Library.DatItems
public override bool Equals(DatItem other)
{
// If we don't have a biosset, return false
// If we don't have a BiosSet, return false
if (ItemType != other.ItemType)
return false;
// Otherwise, treat it as a biosset
// Otherwise, treat it as a BiosSet
BiosSet newOther = other as BiosSet;
// If the archive information matches
// If the BiosSet information matches
return (Name == newOther.Name && Description == newOther.Description && Default == newOther.Default);
}