From 5681c3f856ab988523085ae247b8ceff5a99068d Mon Sep 17 00:00:00 2001 From: oblerion <82583559+oblerion@users.noreply.github.com> Date: Thu, 1 Feb 2024 14:36:50 +0100 Subject: [PATCH] Update rcore.c --- src/rcore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;