mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Chip clock to long?
This commit is contained in:
@@ -165,7 +165,7 @@ namespace SabreTools.Library.Filtering
|
||||
// Chip
|
||||
public FilterItem<string> DatItem_Tag { get; private set; } = new FilterItem<string>();
|
||||
public FilterItem<ChipType> DatItem_ChipType { get; private set; } = new FilterItem<ChipType>() { Positive = ChipType.NULL, Negative = ChipType.NULL };
|
||||
public FilterItem<string> DatItem_Clock { get; private set; } = new FilterItem<string>();
|
||||
public FilterItem<long?> DatItem_Clock { get; private set; } = new FilterItem<long?>() { Positive = null, Negative = null, Neutral = null };
|
||||
|
||||
// Condition
|
||||
public FilterItem<string> DatItem_Mask { get; private set; } = new FilterItem<string>();
|
||||
@@ -730,7 +730,7 @@ namespace SabreTools.Library.Filtering
|
||||
break;
|
||||
|
||||
case Field.DatItem_Clock:
|
||||
SetStringFilter(DatItem_Clock, value, negate);
|
||||
SetOptionalLongFilter(DatItem_Clock, value, negate);
|
||||
break;
|
||||
|
||||
// Condition
|
||||
|
||||
Reference in New Issue
Block a user