Change immediate from decimal to hexadecimal

Force consistency.
This commit is contained in:
Kawe Mazidjatari 2023-04-01 21:43:16 +02:00
parent a7158d0881
commit 4c79b5af5d

View File

@ -600,7 +600,7 @@ bool IsValidUTF8(char* pszString)
pszString = it + 4;
}
else if ((n - 55296) <= 0x7FF)
else if ((n - 0xD800) <= 0x7FF)
{
return false;
}