mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-07-09 02:16:55 +00:00
Make Machine inherent to DatItem instead of passing through
This commit is contained in:
@@ -1176,8 +1176,8 @@ namespace SabreTools.Metadata.DatFiles
|
||||
}
|
||||
|
||||
// If machine names don't match
|
||||
string? xMachineName = x.GetMachine()?.Name;
|
||||
string? yMachineName = y.GetMachine()?.Name;
|
||||
string? xMachineName = x.Machine?.Name;
|
||||
string? yMachineName = y.Machine?.Name;
|
||||
if (xMachineName != yMachineName)
|
||||
return nc.Compare(xMachineName, yMachineName);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user