mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Filter] Fix filter constructor
This commit is contained in:
@@ -37,21 +37,21 @@ namespace SabreTools.Helper.Dats
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public Filter()
|
public Filter()
|
||||||
{
|
{
|
||||||
_gameNames = null;
|
_gameNames = new List<string>();
|
||||||
_notGameNames = null;
|
_notGameNames = new List<string>();
|
||||||
_romNames = null;
|
_romNames = new List<string>();
|
||||||
_notRomNames = null;
|
_notRomNames = new List<string>();
|
||||||
_romTypes = null;
|
_romTypes = new List<string>();
|
||||||
_notRomTypes = null;
|
_notRomTypes = new List<string>();
|
||||||
_sizeGreaterThanOrEqual = -1;
|
_sizeGreaterThanOrEqual = -1;
|
||||||
_sizeLessThanOrEqual = -1;
|
_sizeLessThanOrEqual = -1;
|
||||||
_sizeEqualTo = -1;
|
_sizeEqualTo = -1;
|
||||||
_crcs = null;
|
_crcs = new List<string>();
|
||||||
_notCrcs = null;
|
_notCrcs = new List<string>();
|
||||||
_md5s = null;
|
_md5s = new List<string>();
|
||||||
_notMd5s = null;
|
_notMd5s = new List<string>();
|
||||||
_sha1s = null;
|
_sha1s = new List<string>();
|
||||||
_notSha1s = null;
|
_notSha1s = new List<string>();
|
||||||
_itemStatuses = ItemStatus.NULL;
|
_itemStatuses = ItemStatus.NULL;
|
||||||
_itemNotStatuses = ItemStatus.NULL;
|
_itemNotStatuses = ItemStatus.NULL;
|
||||||
_machineTypes = MachineType.NULL;
|
_machineTypes = MachineType.NULL;
|
||||||
|
|||||||
Reference in New Issue
Block a user