1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-29 03:33:48 +00:00

Merge pull request #45 from Cat-Ion/issue15

Fix charIsUpper().
This commit is contained in:
False.Genesis 2017-01-13 11:32:45 +01:00 committed by GitHub
commit 6f4474df36

View file

@ -218,7 +218,7 @@ static TransatableStaticInit _transtable_static_init;
static unsigned char charIsUpper(unsigned char c)
{
return c == upperToLowerTable[c];
return c == lowerToUpperTable[c];
}
static unsigned char charToLower(unsigned char c)