1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Remose useless test on signed char

This commit is contained in:
Mathieu Schroeter 2017-02-18 19:35:19 +01:00
parent 45102da4dd
commit 0913898809

View File

@ -29,7 +29,7 @@ static Sint32 GetOffset (const char *&c)
if ((unsigned char) *c == table_accents[i])
return 15 + i;
}
if (*c < 0 || *c > 128)
if (*c < 0)
return 1; // carré
return *c;