summaryrefslogtreecommitdiffhomepage
path: root/src/text.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-03-25 19:41:51 +0100
committerraysan5 <[email protected]>2020-03-25 19:41:51 +0100
commit7ae7a87f8ae10ed9c68f308a62d7d7b0dc31a55a (patch)
tree06f37bbdc5e36b7246222541a6cda655fdf9dbb3 /src/text.c
parent3d41c1b6cd5e42e2334798fe6af9394a93c89713 (diff)
downloadraylib-7ae7a87f8ae10ed9c68f308a62d7d7b0dc31a55a.tar.gz
raylib-7ae7a87f8ae10ed9c68f308a62d7d7b0dc31a55a.zip
Remove trail spaces
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/text.c b/src/text.c
index bce0e6f9..1563952f 100644
--- a/src/text.c
+++ b/src/text.c
@@ -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; }