diff options
| author | raysan5 <[email protected]> | 2020-03-25 19:41:51 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-03-25 19:41:51 +0100 |
| commit | 7ae7a87f8ae10ed9c68f308a62d7d7b0dc31a55a (patch) | |
| tree | 06f37bbdc5e36b7246222541a6cda655fdf9dbb3 /src/text.c | |
| parent | 3d41c1b6cd5e42e2334798fe6af9394a93c89713 (diff) | |
| download | raylib-7ae7a87f8ae10ed9c68f308a62d7d7b0dc31a55a.tar.gz raylib-7ae7a87f8ae10ed9c68f308a62d7d7b0dc31a55a.zip | |
Remove trail spaces
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -506,7 +506,7 @@ CharInfo *LoadFontData(const char *fileName, int fontSize, int *fontChars, int c { int genFontChars = false; stbtt_fontinfo fontInfo = { 0 }; - + if (stbtt_InitFont(&fontInfo, fileData, 0)) // Init font for data reading { // Calculate font scale factor @@ -1352,8 +1352,8 @@ const char *TextToUpper(const char *text) { buffer[i] = (char)toupper(text[i]); //if ((text[i] >= 'a') && (text[i] <= 'z')) buffer[i] = text[i] - 32; - - // TODO: Support Utf8 diacritics! + + // TODO: Support Utf8 diacritics! //if ((text[i] >= 'à') && (text[i] <= 'ý')) buffer[i] = text[i] - 32; } else { buffer[i] = '\0'; break; } |
