mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 05:06:39 +00:00
TamperMachine: Fix input mask check (#3764)
This commit is contained in:
parent
0dbe45ae37
commit
beacf8c1c8
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ namespace Ryujinx.HLE.HOS.Tamper.Conditions
|
||||||
|
|
||||||
public bool Evaluate()
|
public bool Evaluate()
|
||||||
{
|
{
|
||||||
return (_input.Value & _mask) != 0;
|
return (_input.Value & _mask) == _mask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue