diff --git a/SabreTools.Library/DatFiles/DatFile.cs b/SabreTools.Library/DatFiles/DatFile.cs
index c41ab66f..f856ac3f 100644
--- a/SabreTools.Library/DatFiles/DatFile.cs
+++ b/SabreTools.Library/DatFiles/DatFile.cs
@@ -1625,7 +1625,7 @@ namespace SabreTools.Library.DatFiles
/// True if the date should not be appended to the default name, false otherwise [OBSOLETE]
/// True to clean the game names to WoD standard, false otherwise (default)
/// True if we should remove non-ASCII characters from output, false otherwise (default)
- /// True to allow SL DATs to have game names used instead of descriptions, false otherwise (default)
+ /// True to use game descriptions as the names, false otherwise (default)
/// Filter object to be passed to the DatItem level
/// Type of the split that should be performed (split, merged, fully merged)
/// ReplaceMode representing what should be updated [only for base replacement]
@@ -1698,8 +1698,7 @@ namespace SabreTools.Library.DatFiles
/// True if the output files should overwrite their inputs, false otherwise
/// True to clean the game names to WoD standard, false otherwise (default)
/// True if we should remove non-ASCII characters from output, false otherwise (default)
- /// True to allow SL DATs to have game names used instead of descriptions, false otherwise (default)
- /// Type of the split that should be performed (split, merged, fully merged)
+ /// True to use game descriptions as the names, false otherwise (default)
/// Optional param for output directory
/// Filter object to be passed to the DatItem level
/// Type of the split that should be performed (split, merged, fully merged)
@@ -1764,9 +1763,6 @@ namespace SabreTools.Library.DatFiles
/// True to allow SL DATs to have game names used instead of descriptions, false otherwise (default)
/// Filter object to be passed to the DatItem level
/// Type of the split that should be performed (split, merged, fully merged)
- /// True if we are supposed to trim names to NTFS length, false otherwise
- /// True if all games should be replaced by '!', false otherwise
- /// String representing root directory to compare against for length calculation
/// ReplaceMode representing what should be updated
/// True if descriptions should only be replaced if the game name is the same, false otherwise
public void BaseReplace(List inputFileNames, List baseFileNames, string outDir, bool inplace, bool clean, bool remUnicode,
@@ -1971,12 +1967,9 @@ namespace SabreTools.Library.DatFiles
/// True if the output files should overwrite their inputs, false otherwise
/// True to clean the game names to WoD standard, false otherwise (default)
/// True if we should remove non-ASCII characters from output, false otherwise (default)
- /// True to allow SL DATs to have game names used instead of descriptions, false otherwise (default)
+ /// True to use game descriptions as the names, false otherwise (default)
/// Filter object to be passed to the DatItem level
/// Type of the split that should be performed (split, merged, fully merged)
- /// True if we are supposed to trim names to NTFS length, false otherwise
- /// True if all games should be replaced by '!', false otherwise
- /// String representing root directory to compare against for length calculation
public void DiffAgainst(List inputFileNames, List baseFileNames, string outDir, bool inplace, bool clean, bool remUnicode,
bool descAsName, Filter filter, SplitType splitType)
{
@@ -2345,23 +2338,16 @@ namespace SabreTools.Library.DatFiles
}
///
- /// Convert, update, and filter a DAT file or set of files using a base
+ /// Convert, update, and filter a DAT file or set of files
///
/// Names of the input files and/or folders
/// Optional param for output directory
- /// True if input files should be merged into a single file, false otherwise
- /// Non-zero flag for diffing mode, zero otherwise
/// True if the output files should overwrite their inputs, false otherwise
- /// True if the first cascaded diff file should be skipped on output, false otherwise
- /// True if the date should not be appended to the default name, false otherwise [OBSOLETE]
/// True to clean the game names to WoD standard, false otherwise (default)
/// True if we should remove non-ASCII characters from output, false otherwise (default)
- /// True to allow SL DATs to have game names used instead of descriptions, false otherwise (default)
+ /// True to use game descriptions as the names, false otherwise (default)
/// Filter object to be passed to the DatItem level
/// Type of the split that should be performed (split, merged, fully merged)
- /// True if we are supposed to trim names to NTFS length, false otherwise
- /// True if all games should be replaced by '!', false otherwise
- /// String representing root directory to compare against for length calculation
public void Update(List inputFileNames, string outDir, bool inplace, bool clean, bool remUnicode, bool descAsName,
Filter filter, SplitType splitType)
{