rtext: removed always false comparison
This commit is contained in:
parent
80fecccca8
commit
5bc70d9e56
|
|
@ -1842,14 +1842,7 @@ const char *TextToCamel(const char *text)
|
|||
j++;
|
||||
if ((text[j] >= 'a') && (text[j] <= 'z'))
|
||||
{
|
||||
if (i == 0)
|
||||
{
|
||||
buffer[i] = text[j];
|
||||
}
|
||||
else
|
||||
{
|
||||
buffer[i] = text[j] - 32;
|
||||
}
|
||||
buffer[i] = text[j] - 32;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user