fix system check [skip ci]

This commit is contained in:
m
2022-09-03 00:10:49 -05:00
committed by GitHub
parent 99e047a8c9
commit 418c4bd34e

View File

@ -71,14 +71,14 @@ namespace system_check
if (arxan::is_wine())
{
if (value != 0xFFB81262 && value != 0xFFB81143)
if (value == 0xFFB81262 || value == 0xFFB81143)
{
return;
}
}
else
{
if (value != 0x60202B6A && value != 0xBC0E9FE)
if (value == 0x60202B6A || value == 0xBC0E9FE)
{
return;
}