diff --git a/SabreHelper/Output.cs b/SabreHelper/Output.cs
index 153f6095..59d56bda 100644
--- a/SabreHelper/Output.cs
+++ b/SabreHelper/Output.cs
@@ -8,9 +8,24 @@ namespace SabreTools.Helper
{
public class Output
{
+ ///
+ /// Create and open an output file for writing
+ ///
+ /// Internal name of the DAT
+ /// Description and external name of the DAT
+ /// Version or iteration of the DAT
+ /// Usually the DAT creation date
+ /// Category of the DAT
+ /// DAT author
+ /// Force all sets to be unzipped
+ /// Set output mode to old-style DAT
+ /// Set the output directory
+ /// List of RomData objects representing the games to be written out
+ /// Logger object for console and/or file output
+ ///
public static bool WriteToDat(string name, string description, string version, string date, string category, string author, bool forceunzip, bool old, string outDir, List roms, Logger logger)
{
- // Create and open an output file for writing (currently uses current time, change to "last updated time")
+ // (currently uses current time, change to "last updated time")
logger.Log("Opening file for writing: " + outDir + description + (old ? ".dat" : ".xml"));
try