[RombaSharp, DatFile] More fixes

This commit is contained in:
Matt Nadareski
2017-02-23 15:02:53 -08:00
parent 7174c9e876
commit 649488d400
4 changed files with 8 additions and 7 deletions

View File

@@ -887,7 +887,8 @@ namespace SabreTools.Helper.Dats
logger.User("Processing files:\n");
foreach (string input in inputs)
{
PopulateFromDir(input, quickScan /* noMD5 */, quickScan /* noSHA1 */, true /* bare */, false /* archivesAsFiles */,
// TODO: Eventually migrate noSHA256 to quickScan instead of true
PopulateFromDir(input, quickScan /* noMD5 */, quickScan /* noSHA1 */, true /* noSHA256 */, true /* bare */, false /* archivesAsFiles */,
true /* enableGzip */, false /* addBlanks */, false /* addDate */, tempDir /* tempDir */, false /* copyFiles */,
headerToCheckAgainst, 4 /* maxDegreeOfParallelism */, logger);
}