[DatHeader] Remove field that shouldn't be in the header

This commit is contained in:
Matt Nadareski
2017-10-06 14:22:44 -07:00
parent e313092f14
commit 8a9e655d44

View File

@@ -33,7 +33,6 @@ namespace SabreTools.Library.Dats
private Hash _stripHash; private Hash _stripHash;
private bool _oneGameOneRegion; private bool _oneGameOneRegion;
private List<string> _regions; private List<string> _regions;
private SortedBy _sortedBy;
// Data specific to the Miss DAT type // Data specific to the Miss DAT type
private bool _useGame; private bool _useGame;
@@ -174,10 +173,6 @@ namespace SabreTools.Library.Dats
} }
set { _regions = value; } set { _regions = value; }
} }
public SortedBy SortedBy
{
get { return _sortedBy; }
}
// Data specific to the Miss DAT type // Data specific to the Miss DAT type
public bool UseGame public bool UseGame
@@ -263,7 +258,6 @@ namespace SabreTools.Library.Dats
_stripHash = this._stripHash, _stripHash = this._stripHash,
_oneGameOneRegion = this._oneGameOneRegion, _oneGameOneRegion = this._oneGameOneRegion,
_regions = this._regions, _regions = this._regions,
_sortedBy = this._sortedBy,
_useGame = this._useGame, _useGame = this._useGame,
_prefix = this._prefix, _prefix = this._prefix,