Replace usages of Name field (nw)

This commit is contained in:
Matt Nadareski
2024-03-08 20:42:24 -05:00
parent 71dcc04558
commit 2dbe257023
59 changed files with 268 additions and 564 deletions

View File

@@ -171,7 +171,6 @@ namespace SabreTools.DatItems.Formats
{
var rom = new Rom()
{
Name = $"{this.Id}.{this.Extension}",
ItemType = ItemType.Rom,
DupeType = this.DupeType,
@@ -184,6 +183,7 @@ namespace SabreTools.DatItems.Formats
SHA1 = this.SHA1,
SHA256 = this.SHA256,
};
rom.SetName($"{this.Id}.{this.Extension}");
return rom;
}