Add No-Intro ID support

This commit is contained in:
Matt Nadareski
2023-03-26 21:47:17 -04:00
parent dbf5ee5040
commit 2681e4a997
9 changed files with 39 additions and 4 deletions

View File

@@ -56,6 +56,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>();
#endregion
@@ -255,6 +256,10 @@ namespace SabreTools.Filtering
SetStringFilter(RebuildTo, value, negate);
break;
case MachineField.NoIntroId:
SetStringFilter(NoIntroId, value, negate);
break;
#endregion
#region Logiqx EmuArc
@@ -456,6 +461,10 @@ namespace SabreTools.Filtering
if (!PassStringFilter(RebuildTo, machine.RebuildTo))
return false;
// Machine_NoIntroId
if (!PassStringFilter(NoIntroId, machine.NoIntroId))
return false;
#endregion
#region Logiqx EmuArc