diff --git a/src/rcore.c b/src/rcore.c index 362cbab98..0a9d57f92 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -1950,9 +1950,9 @@ const char *GetFileNameWithoutExt(const char *filePath) { const char *fileName = GetFileName(filePath); int pos = (int)strlen(fileName); - for(int i = pos; i>0; i--) + for (int i = pos; i>0; i--) { - if(fileName[i] == '.') + if (fileName[i] == '.') { pos = i; break;