fix system check [skip ci]

This commit is contained in:
m 2022-09-03 00:10:49 -05:00 committed by GitHub
parent f7c5b6506a
commit a93414f472

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