mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile, SeparatedValue, Utilities] Fix SSV
This commit is contained in:
@@ -2135,6 +2135,20 @@ namespace SabreTools.Library.DatFiles
|
||||
DatFile outerDiffData = new DatFile();
|
||||
DatFile dupeData = new DatFile();
|
||||
|
||||
Parallel.For(0, inputs.Count, Globals.ParallelOptions, i =>
|
||||
{
|
||||
string path = "";
|
||||
int id = 0;
|
||||
|
||||
lock (inputs)
|
||||
{
|
||||
path = inputs[i];
|
||||
id = inputs.Count - i;
|
||||
}
|
||||
|
||||
Parse(path, id, id, keep: true);
|
||||
});
|
||||
|
||||
// Fill in any information not in the base DAT
|
||||
if (String.IsNullOrWhiteSpace(FileName))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user