diff --git a/SabreTools.Helper/Objects/Dat/DatFile.cs b/SabreTools.Helper/Objects/Dat/DatFile.cs
index 9ea46715..69429ac4 100644
--- a/SabreTools.Helper/Objects/Dat/DatFile.cs
+++ b/SabreTools.Helper/Objects/Dat/DatFile.cs
@@ -4432,7 +4432,7 @@ namespace SabreTools.Helper
break;
case StatOutputFormat.HTML:
line = "\t\t\t
| " + HttpUtility.HtmlEncode(FileName) + " | "
- + "" + Style.GetBytesReadable(TotalSize) + " | "
+ + "" + Style.GetBytesReadable(TotalSize) + " | "
+ "" + (game == -1 ? Files.Count : game) + " | "
+ "" + RomCount + " | "
+ "" + DiskCount + " | "
@@ -5447,8 +5447,9 @@ Please check the log folder if the stats scrolled offscreen", false);
+ (baddumpCol ? ",\"BadDumps\"" : "") + (nodumpCol ? ",\"Nodumps\"" : "") + "\n";
break;
case StatOutputFormat.HTML:
- head = @"
| File Name | Total Size | Games | Roms | Disks | # with CRC | "
-+ "# with MD5 | # with SHA-1 | " + (baddumpCol ? "Baddumps | " : "") + (nodumpCol ? "Nodumps | " : "") + "
\n";
+ head = @" | File Name | Total Size | Games | Roms | "
++ @"Disks | # with CRC | # with MD5 | # with SHA-1 | "
++ (baddumpCol ? "Baddumps | " : "") + (nodumpCol ? "Nodumps | " : "") + "
\n";
break;
case StatOutputFormat.None:
default: