[DatFile] Fix standard diff naming

This commit is contained in:
Matt Nadareski
2017-01-27 09:45:55 -08:00
parent a0adcc039f
commit a39cb80435

View File

@@ -156,6 +156,20 @@ namespace SabreTools.Helper.Dats
DatFile outerDiffData = new DatFile();
DatFile dupeData = new DatFile();
// Fill in any information not in the base DAT
if (String.IsNullOrEmpty(_fileName))
{
_fileName = "All DATs";
}
if (String.IsNullOrEmpty(_name))
{
_name = "All DATs";
}
if (String.IsNullOrEmpty(_description))
{
_description = "All DATs";
}
// Don't have External dupes
if ((diff & DiffMode.NoDupes) != 0)
{