Writing to actual class

This commit is contained in:
Matt Nadareski
2020-12-10 14:03:07 -08:00
parent 114579f82f
commit 8f67c3e525
11 changed files with 35 additions and 25 deletions

View File

@@ -64,7 +64,7 @@ in -old DAT file. Ignores those entries in -old that are not in -new.";
// Diff against the new datfile
DatFile intDat = Parser.CreateAndParse(newdat);
DatTool.DiffAgainst(datfile, intDat, false);
DatTool.Write(intDat, outdat);
Writer.Write(intDat, outdat);
}
}
}