[SabreTools, DatFile, DatHeader, README.1ST] Add scene date strip (untested)

This commit is contained in:
Matt Nadareski
2017-10-30 15:17:13 -07:00
parent 91f52902dd
commit 2ddad9321b
6 changed files with 104 additions and 3 deletions

View File

@@ -32,6 +32,7 @@ namespace SabreTools.Library.DatFiles
private ForcePacking _forcePacking;
private DatFormat _datFormat;
private bool _excludeOf;
private bool _sceneDateStrip;
private DedupeType _dedupeRoms;
private Hash _stripHash;
private bool _oneGameOneRegion;
@@ -148,6 +149,11 @@ namespace SabreTools.Library.DatFiles
get { return _excludeOf; }
set { _excludeOf = value; }
}
public bool SceneDateStrip
{
get { return _sceneDateStrip; }
set { _sceneDateStrip = value; }
}
public DedupeType DedupeRoms
{
get { return _dedupeRoms; }