mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Better conditional updates
This commit is contained in:
@@ -98,7 +98,12 @@ namespace SabreTools.DatItems.Formats
|
||||
/// Fill any missing size and hash information from another Disk
|
||||
/// </summary>
|
||||
/// <param name="other">Disk to fill information from</param>
|
||||
public void FillMissingInformation(Disk other) => _internal.FillMissingHashes(other?._internal);
|
||||
public void FillMissingInformation(Disk other)
|
||||
{
|
||||
_internal.FillMissingHashes(other._internal);
|
||||
ConditionalUpdateSource(other);
|
||||
ConditionalUpdateMachine(other);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Get unique duplicate suffix on name collision
|
||||
|
||||
Reference in New Issue
Block a user