mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[ALL] TSV and CSV are top level now
This commit is contained in:
@@ -173,6 +173,12 @@ namespace SabreTools.Helper
|
||||
outfileNames.Add(OutputFormat.ClrMamePro, CreateOutfileNamesHelper(outDir, ".dat", datdata, overwrite));
|
||||
};
|
||||
|
||||
// CSV
|
||||
if ((datdata.OutputFormat & OutputFormat.CSV) != 0)
|
||||
{
|
||||
outfileNames.Add(OutputFormat.CSV, CreateOutfileNamesHelper(outDir, ".csv", datdata, overwrite));
|
||||
};
|
||||
|
||||
// DOSCenter
|
||||
if ((datdata.OutputFormat & OutputFormat.DOSCenter) != 0
|
||||
&& (datdata.OutputFormat & OutputFormat.ClrMamePro) == 0
|
||||
@@ -187,6 +193,12 @@ namespace SabreTools.Helper
|
||||
outfileNames.Add(OutputFormat.DOSCenter, CreateOutfileNamesHelper(outDir, ".dc.dat", datdata, overwrite));
|
||||
};
|
||||
|
||||
// Logiqx XML
|
||||
if ((datdata.OutputFormat & OutputFormat.Logiqx) != 0)
|
||||
{
|
||||
outfileNames.Add(OutputFormat.Logiqx, CreateOutfileNamesHelper(outDir, ".xml", datdata, overwrite));
|
||||
};
|
||||
|
||||
// Missfile
|
||||
if ((datdata.OutputFormat & OutputFormat.MissFile) != 0)
|
||||
{
|
||||
@@ -263,10 +275,10 @@ namespace SabreTools.Helper
|
||||
outfileNames.Add(OutputFormat.SoftwareList, CreateOutfileNamesHelper(outDir, ".sl.xml", datdata, overwrite));
|
||||
}
|
||||
|
||||
// Logiqx XML
|
||||
if ((datdata.OutputFormat & OutputFormat.Logiqx) != 0)
|
||||
// TSV
|
||||
if ((datdata.OutputFormat & OutputFormat.TSV) != 0)
|
||||
{
|
||||
outfileNames.Add(OutputFormat.Logiqx, CreateOutfileNamesHelper(outDir, ".xml", datdata, overwrite));
|
||||
outfileNames.Add(OutputFormat.TSV, CreateOutfileNamesHelper(outDir, ".tsv", datdata, overwrite));
|
||||
};
|
||||
|
||||
return outfileNames;
|
||||
|
||||
Reference in New Issue
Block a user