diff --git a/src/rtext.c b/src/rtext.c index 3135f8c2f..118a559d6 100644 --- a/src/rtext.c +++ b/src/rtext.c @@ -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; } } }