[DatFile] Rely on count

This commit is contained in:
Matt Nadareski
2017-09-25 13:16:16 -07:00
parent 817a6cc180
commit 67e7d12d63
2 changed files with 35 additions and 66 deletions

View File

@@ -236,11 +236,8 @@ namespace SabreTools.Library.Dats
interOutDir = Path.GetDirectoryName(Path.Combine(Environment.CurrentDirectory, splitpath[0].Remove(0, splitpath[1].Length + 1)));
}
// Once we're done, we check to see if there's anything to write out
if (intDat.Count > 0)
{
// Once we're done, try writing out
intDat.WriteToFile(interOutDir);
}
// Due to possible memory requirements, we force a garbage collection
GC.Collect();

View File

@@ -1604,9 +1604,7 @@ namespace SabreTools.Library.Dats
{
string footer = "";
// If we have roms, output the full footer
if (Count > 0)
{
// Output the proper footer
switch (datFormat)
{
case DatFormat.ClrMamePro:
@@ -1643,32 +1641,6 @@ namespace SabreTools.Library.Dats
footer = "\t</software>\n\n</softwarelist>\n";
break;
}
}
// Otherwise, output the abbreviated form
else
{
switch (datFormat)
{
case DatFormat.Logiqx:
case DatFormat.SabreDat:
footer = "</datafile>\n";
break;
case DatFormat.OfflineList:
footer = "\t</games>\n"
+ "\t<gui>\n"
+ "\t\t<images width=\"487\" height=\"162\">\n"
+ "\t\t\t<image x=\"0\" y=\"0\" width=\"240\" height=\"160\"/>\n"
+ "\t\t\t<image x=\"245\" y=\"0\" width=\"240\" height=\"160\"/>\n"
+ "\t\t</images>\n"
+ "\t</gui>\n"
+ "</dat>";
break;
case DatFormat.SoftwareList:
footer = "</softwarelist>\n";
break;
}
}
// Write the footer out
sw.Write(footer);