simple fix for the range of the condition.

simple fix for the range of the condition.
This commit is contained in:
ihsinme 2021-06-13 15:25:27 +03:00 committed by GitHub
parent fa6d5b545d
commit 81603aa697
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -803,7 +803,7 @@ static void EncodeIbm858( uint c, StreamOut* out )
/* Convert from Latin0 (aka Latin9, ISO-8859-15) to Unicode */
static uint DecodeLatin0(uint c)
{
if (159 < c && c < 191)
if (163 < c && c < 191)
{
switch (c)
{