mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add No-Intro cloneofid tag
This commit is contained in:
@@ -57,6 +57,7 @@ namespace SabreTools.Filtering
|
||||
public FilterItem<string> Board { get; private set; } = new FilterItem<string>();
|
||||
public FilterItem<string> RebuildTo { get; private set; } = new FilterItem<string>();
|
||||
public FilterItem<string> NoIntroId { get; private set; } = new FilterItem<string>();
|
||||
public FilterItem<string> NoIntroCloneOfId { get; private set; } = new FilterItem<string>();
|
||||
|
||||
#endregion
|
||||
|
||||
@@ -260,6 +261,10 @@ namespace SabreTools.Filtering
|
||||
SetStringFilter(NoIntroId, value, negate);
|
||||
break;
|
||||
|
||||
case MachineField.NoIntroCloneOfId:
|
||||
SetStringFilter(NoIntroCloneOfId, value, negate);
|
||||
break;
|
||||
|
||||
#endregion
|
||||
|
||||
#region Logiqx EmuArc
|
||||
@@ -465,6 +470,11 @@ namespace SabreTools.Filtering
|
||||
if (!PassStringFilter(NoIntroId, machine.NoIntroId))
|
||||
return false;
|
||||
|
||||
// Machine_NoIntroCloneOfId
|
||||
if (!PassStringFilter(NoIntroCloneOfId, value: machine.NoIntroCloneOfId))
|
||||
return false;
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region Logiqx EmuArc
|
||||
|
||||
Reference in New Issue
Block a user