Fix build

This commit is contained in:
Matt Nadareski
2020-08-01 15:37:12 -07:00
parent bd9059ded6
commit 91e7883f86
3 changed files with 3 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ in -old DAT file. Ignores those entries in -old that are not in -new.";
// Now run the diff on the inputs // Now run the diff on the inputs
datfile.DetermineUpdateType(dats, basedats, outdat, UpdateMode.DiffAgainst, false /* inplace */, false /* skip */, datfile.DetermineUpdateType(dats, basedats, outdat, UpdateMode.DiffAgainst, false /* inplace */, false /* skip */,
new Filter(), new List<Field>(), false /* onlySame */); new Filter(), new List<Field>(), false /* onlySame */, false /* byGame */);
} }
} }
} }

View File

@@ -61,7 +61,7 @@ namespace RombaSharp.Features
// Now run the diff on the inputs // Now run the diff on the inputs
datfile.DetermineUpdateType(dats, basedats, outdat, UpdateMode.DiffAgainst, false /* inplace */, false /* skip */, datfile.DetermineUpdateType(dats, basedats, outdat, UpdateMode.DiffAgainst, false /* inplace */, false /* skip */,
new Filter(), new List<Field>(), false /* onlySame */); new Filter(), new List<Field>(), false /* onlySame */, false /* byGame */);
} }
} }
} }

View File

@@ -191,6 +191,7 @@ namespace SabreTools.Library.DatFiles
#endregion #endregion
// TODO: Move to features?
#region Determination Helpers #region Determination Helpers
/// <summary> /// <summary>