[DatFile] Make parsing into object-based instead of static

This commit is contained in:
Matt Nadareski
2016-09-22 17:11:52 -07:00
parent 0ed44d0b45
commit 27cd7e89da
4 changed files with 133 additions and 142 deletions

View File

@@ -356,7 +356,7 @@ namespace SabreTools
{
// Parse the Dat if possible
DatFile tempdat = new DatFile();
DatFile.Parse(toscan[key], 0, 0, ref tempdat, _logger);
tempdat.Parse(toscan[key], 0, 0, _logger);
// If the Dat wasn't empty, add the information
if (tempdat.Files.Count != 0)