mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Use DatHeader and DatStats
This commit is contained in:
@@ -358,17 +358,17 @@ namespace SabreTools.Library.Dats
|
||||
DatFile dupeData = new DatFile();
|
||||
|
||||
// Fill in any information not in the base DAT
|
||||
if (String.IsNullOrEmpty(_fileName))
|
||||
if (String.IsNullOrEmpty(FileName))
|
||||
{
|
||||
_fileName = "All DATs";
|
||||
FileName = "All DATs";
|
||||
}
|
||||
if (String.IsNullOrEmpty(_name))
|
||||
if (String.IsNullOrEmpty(Name))
|
||||
{
|
||||
_name = "All DATs";
|
||||
Name = "All DATs";
|
||||
}
|
||||
if (String.IsNullOrEmpty(_description))
|
||||
if (String.IsNullOrEmpty(Description))
|
||||
{
|
||||
_description = "All DATs";
|
||||
Description = "All DATs";
|
||||
}
|
||||
|
||||
// Don't have External dupes
|
||||
|
||||
Reference in New Issue
Block a user