1
0
forked from MeloNX/MeloNX

TamperMachine: Fix input mask check (#3764)

This commit is contained in:
mageven 2022-10-17 04:21:52 +05:30 committed by GitHub
parent 3b29fd9d1c
commit 914014f105

View File

@ -13,7 +13,7 @@ namespace Ryujinx.HLE.HOS.Tamper.Conditions
public bool Evaluate()
{
return (_input.Value & _mask) != 0;
return (_input.Value & _mask) == _mask;
}
}
}