mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-13 21:36:01 +00:00
REVIEWED: TextToPascal()
, fix https://github.com/raylibtech/rtools/issues/57
This commit is contained in:
@@ -1954,6 +1954,7 @@ char *TextToPascal(const char *text)
|
||||
{
|
||||
j++;
|
||||
if ((text[j] >= 'a') && (text[j] <= 'z')) buffer[i] = text[j] - 32;
|
||||
else if ((text[j] >= '0') && (text[j] <= '9')) buffer[i] = text[j];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user