19 lines
399 B
C#
19 lines
399 B
C#
namespace Ryujinx.HLE.HOS.Tamper.Conditions
|
|
{
|
|
class InputMask : ICondition
|
|
{
|
|
private long _mask;
|
|
private Parameter<long> _input;
|
|
|
|
public InputMask(long mask, Parameter<long> input)
|
|
{
|
|
_mask = mask;
|
|
_input = input;
|
|
}
|
|
|
|
public bool Evaluate()
|
|
{
|
|
return (_input.Value & _mask) == _mask;
|
|
}
|
|
}
|
|
}
|