diff --git a/SabreTools/SabreTools.Inits.cs b/SabreTools/SabreTools.Inits.cs index b5f888a9..489780fb 100644 --- a/SabreTools/SabreTools.Inits.cs +++ b/SabreTools/SabreTools.Inits.cs @@ -95,7 +95,10 @@ namespace SabreTools /// Input file or folder names /// Output directory to write new files to, blank defaults to rom folder /// True if headers should not be stored in the database, false otherwise - private static void InitExtractRemoveHeader(List inputs, string outDir, bool nostore) + private static void InitExtractRemoveHeader( + List inputs, + string outDir, + bool nostore) { // Get only files from the inputs List files = Utilities.GetOnlyFilesFromInputs(inputs); @@ -111,7 +114,9 @@ namespace SabreTools /// /// Input file or folder names /// Output directory to write new files to, blank defaults to rom folder - private static void InitReplaceHeader(List inputs, string outDir) + private static void InitReplaceHeader( + List inputs, + string outDir) { // Get only files from the inputs List files = Utilities.GetOnlyFilesFromInputs(inputs); @@ -143,9 +148,25 @@ namespace SabreTools /// Populated string representing the name of the skipper to use, a blank string to use the first available checker, null otherwise /// Type of the split that should be performed (split, merged, fully merged) /// True if CHDs should be treated like regular files, false otherwise - private static void InitSort(List datfiles, List inputs, string outDir, bool depot, bool quickScan, bool date, bool delete, - bool inverse, OutputFormat outputFormat, bool romba, int sevenzip, int gz, int rar, int zip, bool updateDat, string headerToCheckAgainst, - SplitType splitType, bool chdsAsFiles) + private static void InitSort( + List datfiles, + List inputs, + string outDir, + bool depot, + bool quickScan, + bool date, + bool delete, + bool inverse, + OutputFormat outputFormat, + bool romba, + int sevenzip, + int gz, + int rar, + int zip, + bool updateDat, + string headerToCheckAgainst, + SplitType splitType, + bool chdsAsFiles) { // Get the archive scanning level ArchiveScanLevel asl = Utilities.GetArchiveScanLevelFromNumbers(sevenzip, gz, rar, zip); @@ -190,8 +211,17 @@ namespace SabreTools /// True if short filenames should be used, false otherwise (Level Split only) /// True if original filenames should be used as the base for output filename, false otherwise (Level Split only) /// Long value representing the split point (Size Split only) - private static void InitSplit(List inputs, string outDir, bool inplace, DatFormat datFormat, - SplittingMode splittingMode, List exta, List extb, bool shortname, bool basedat, long radix) + private static void InitSplit( + List inputs, + string outDir, + bool inplace, + DatFormat datFormat, + SplittingMode splittingMode, + List exta, + List extb, + bool shortname, + bool basedat, + long radix) { DatFile datfile = new DatFile(); datfile.DatFormat = datFormat; @@ -208,7 +238,13 @@ namespace SabreTools /// True if baddumps should be included in output, false otherwise /// True if nodumps should be included in output, false otherwise /// Set the statistics output format to use - private static void InitStats(List inputs, string filename, string outDir, bool single, bool baddumpCol, bool nodumpCol, + private static void InitStats( + List inputs, + string filename, + string outDir, + bool single, + bool baddumpCol, + bool nodumpCol, StatReportFormat statDatFormat) { DatFile.OutputStats(inputs, filename, outDir, single, baddumpCol, nodumpCol, statDatFormat); @@ -327,8 +363,15 @@ namespace SabreTools /// Populated string representing the name of the skipper to use, a blank string to use the first available checker, null otherwise /// Type of the split that should be performed (split, merged, fully merged) /// True if CHDs should be treated like regular files, false otherwise - private static void InitVerify(List datfiles, List inputs, bool depot, bool hashOnly, bool quickScan, - string headerToCheckAgainst, SplitType splitType, bool chdsAsFiles) + private static void InitVerify( + List datfiles, + List inputs, + bool depot, + bool hashOnly, + bool quickScan, + string headerToCheckAgainst, + SplitType splitType, + bool chdsAsFiles) { // Get the archive scanning level ArchiveScanLevel asl = Utilities.GetArchiveScanLevelFromNumbers(1, 1, 1, 1);