diff --git a/SabreTools.Helper/Objects/Dat/DatFile.cs b/SabreTools.Helper/Objects/Dat/DatFile.cs
index a56889b1..56ad65ed 100644
--- a/SabreTools.Helper/Objects/Dat/DatFile.cs
+++ b/SabreTools.Helper/Objects/Dat/DatFile.cs
@@ -4431,7 +4431,9 @@ namespace SabreTools.Helper
line += "\n";
break;
case StatOutputFormat.HTML:
- line = "\t\t\t
| " + HttpUtility.HtmlEncode(FileName) + " | "
+ line = "\t\t\t
| " + HttpUtility.HtmlEncode(FileName.Remove(0, 5))
+ : "> | " + HttpUtility.HtmlEncode(FileName)) + " | "
+ "" + Style.GetBytesReadable(TotalSize) + " | "
+ "" + (game == -1 ? Files.Count : game) + " | "
+ "" + RomCount + " | "
@@ -5270,7 +5272,6 @@ namespace SabreTools.Helper
List games = new List();
DatFile datdata = new DatFile();
datdata.Parse(filename.Item1, 0, 0, logger);
- datdata.FileName = "FILE: " + datdata.FileName;
datdata.BucketByGame(false, true, logger, false);
// Output single DAT stats (if asked)
@@ -5414,12 +5415,19 @@ Please check the log folder if the stats scrolled offscreen", false);
-
+
+ DAT Statistics Report (" + DateTime.Now.ToShortDateString() + @")
";
break;
@@ -5454,7 +5462,7 @@ Please check the log folder if the stats scrolled offscreen", false);
case StatOutputFormat.HTML:
head = @" | File Name | Total Size | Games | Roms | "
+ @"Disks | # with CRC | # with MD5 | # with SHA-1 | "
-+ (baddumpCol ? "Baddumps | " : "") + (nodumpCol ? "Nodumps | " : "") + "
\n";
++ (baddumpCol ? "Baddumps | " : "") + (nodumpCol ? "Nodumps | " : "") + "\n";
break;
case StatOutputFormat.None:
default: