simple fix for the range of the condition.
simple fix for the range of the condition.
This commit is contained in:
parent
fa6d5b545d
commit
81603aa697
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue