mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Fix count
This commit is contained in:
@@ -417,7 +417,13 @@ namespace SabreTools.Helper.Dats
|
||||
|
||||
lock (_files)
|
||||
{
|
||||
return _files.Count;
|
||||
int count = 0;
|
||||
foreach (string key in _files.Keys)
|
||||
{
|
||||
count += _files[key].Count;
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user