1
0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-01-21 05:41:56 -08:00

20 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;
}
}
}