mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatTools] Forgot one place for flag usage
This commit is contained in:
@@ -2066,12 +2066,20 @@ namespace SabreTools.Helper
|
|||||||
logger.User("Outputting all created DATs");
|
logger.User("Outputting all created DATs");
|
||||||
|
|
||||||
// Output the difflist (a-b)+(b-a) diff
|
// Output the difflist (a-b)+(b-a) diff
|
||||||
|
if ((diff & DiffMode.NoDupes) != 0)
|
||||||
|
{
|
||||||
Output.WriteDatfile(outerDiffData, outdir, logger);
|
Output.WriteDatfile(outerDiffData, outdir, logger);
|
||||||
|
}
|
||||||
|
|
||||||
// Output the (ab) diff
|
// Output the (ab) diff
|
||||||
|
if ((diff & DiffMode.Dupes) != 0)
|
||||||
|
{
|
||||||
Output.WriteDatfile(dupeData, outdir, logger);
|
Output.WriteDatfile(dupeData, outdir, logger);
|
||||||
|
}
|
||||||
|
|
||||||
// Output the individual (a-b) DATs
|
// Output the individual (a-b) DATs
|
||||||
|
if ((diff & DiffMode.Individuals) != 0)
|
||||||
|
{
|
||||||
for (int j = 0; j < inputs.Count; j++)
|
for (int j = 0; j < inputs.Count; j++)
|
||||||
{
|
{
|
||||||
// If we have an output directory set, replace the path
|
// If we have an output directory set, replace the path
|
||||||
@@ -2083,6 +2091,7 @@ namespace SabreTools.Helper
|
|||||||
Output.WriteDatfile(outDats[j], path, logger);
|
Output.WriteDatfile(outDats[j], path, logger);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
logger.User("Outputting complete in " + DateTime.Now.Subtract(start).ToString(@"hh\:mm\:ss\.fffff"));
|
logger.User("Outputting complete in " + DateTime.Now.Subtract(start).ToString(@"hh\:mm\:ss\.fffff"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user