summaryrefslogtreecommitdiffhomepage
path: root/src/text.c
diff options
context:
space:
mode:
authorRay <[email protected]>2019-02-22 12:12:21 +0100
committerRay <[email protected]>2019-02-22 12:12:21 +0100
commita886f5e743cd50744d7800cd70a47f5cb9f663e3 (patch)
treeb045b074e038b75d275bded59a7f382f57ddcff4 /src/text.c
parent641895b5ba778fdc9024ebb58446dcc8ea36a00a (diff)
downloadraylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.tar.gz
raylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.zip
Remove TABS
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/text.c b/src/text.c
index 9a7d690d..3a5b33d6 100644
--- a/src/text.c
+++ b/src/text.c
@@ -1386,10 +1386,10 @@ static Font LoadBMFont(const char *fileName)
char *lastSlash = NULL;
lastSlash = strrchr(fileName, '/');
- if (lastSlash == NULL)
- {
- lastSlash = strrchr(fileName, '\\');
- }
+ if (lastSlash == NULL)
+ {
+ lastSlash = strrchr(fileName, '\\');
+ }
// NOTE: We need some extra space to avoid memory corruption on next allocations!
texPath = malloc(strlen(fileName) - strlen(lastSlash) + strlen(texFileName) + 4);