summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-26 20:23:55 +0100
committerRay <[email protected]>2020-02-26 20:23:55 +0100
commitc5d5d19443575cc5b5961f25f3fa00d20dca627f (patch)
treeb871d4506393986608076cbb82f07ed4aed4ef2a
parent0f783aab34b29656c96aa53235c54caa8b5d252f (diff)
downloadraylib-c5d5d19443575cc5b5961f25f3fa00d20dca627f.tar.gz
raylib-c5d5d19443575cc5b5961f25f3fa00d20dca627f.zip
Remove trail spaces
-rw-r--r--src/models.c2
-rw-r--r--src/text.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/models.c b/src/models.c
index 6d95441f..935b9779 100644
--- a/src/models.c
+++ b/src/models.c
@@ -3455,7 +3455,7 @@ static Model LoadGLTF(const char *fileName)
{
/***********************************************************************************
- Function implemented by Wilhem Barbier(@wbrbr), with modifications by Tyler Bezera(@gamerfiend)
+ Function implemented by Wilhem Barbier(@wbrbr), with modifications by Tyler Bezera(@gamerfiend)
Features:
- Supports .gltf and .glb files
diff --git a/src/text.c b/src/text.c
index 08326cde..fccb0198 100644
--- a/src/text.c
+++ b/src/text.c
@@ -1446,7 +1446,7 @@ char *TextToUtf8(int *codepoints, int length)
// Resize memory to text length + string NULL terminator
void *ptr = RL_REALLOC(text, size + 1);
-
+
if (ptr != NULL) text = (char *)ptr;
return text;