diff options
| author | Ray <[email protected]> | 2019-02-22 12:12:21 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-02-22 12:12:21 +0100 |
| commit | a886f5e743cd50744d7800cd70a47f5cb9f663e3 (patch) | |
| tree | b045b074e038b75d275bded59a7f382f57ddcff4 /src/text.c | |
| parent | 641895b5ba778fdc9024ebb58446dcc8ea36a00a (diff) | |
| download | raylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.tar.gz raylib-a886f5e743cd50744d7800cd70a47f5cb9f663e3.zip | |
Remove TABS
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); |
