[DatFile] Make directories more noticable in outputs

This commit is contained in:
Matt Nadareski
2016-09-26 17:41:39 -07:00
parent 219d6f7664
commit 9a823a8941

View File

@@ -5237,7 +5237,7 @@ namespace SabreTools.Helper
DatFile lastdirdat = new DatFile
{
FileName = lastdir.Remove(0, basepath.Length + (basepath.Length == 0 ? 0 : 1)),
FileName = "DIR: " + HttpUtility.HtmlEncode(lastdir.Remove(0, basepath.Length + (basepath.Length == 0 ? 0 : 1))),
TotalSize = dirSize,
RomCount = dirRom,
DiskCount = dirDisk,
@@ -5313,7 +5313,7 @@ namespace SabreTools.Helper
{
DatFile dirdat = new DatFile
{
FileName = lastdir.Remove(0, basepath.Length + (basepath.Length == 0 ? 0 : 1)),
FileName = "DIR: " + HttpUtility.HtmlEncode(lastdir.Remove(0, basepath.Length + (basepath.Length == 0 ? 0 : 1))),
TotalSize = dirSize,
RomCount = dirRom,
DiskCount = dirDisk,