mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2024-11-25 09:44:02 +00:00
Fix charIsUpper(). Solves issue #15.
This commit is contained in:
parent
d84a8bb2c2
commit
a317a0d273
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue