Merge pull request #953 from ihsinme/patch-1

simple fix for the range of the condition.
This commit is contained in:
Jim Derry 2021-06-30 14:09:59 -04:00 committed by GitHub
commit 4f6c723d3b
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)
{