[DatFile] Fix count

This commit is contained in:
Matt Nadareski
2017-01-25 10:47:05 -08:00
parent 5574cf21e4
commit 12559a0e26

View File

@@ -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;
}
}
}