From ee946b2f164211941649efc9aee162fa115dd786 Mon Sep 17 00:00:00 2001 From: mannikim Date: Thu, 13 Feb 2025 23:58:33 +0000 Subject: [PATCH] use strstr instead of TextFindIndex (#4764) --- src/rcore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rcore.c b/src/rcore.c index 59b1b31c8..165c6f1fb 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -3696,7 +3696,7 @@ static void ScanDirectoryFiles(const char *basePath, FilePathList *files, const } else { - if (TextFindIndex(filter, DIRECTORY_FILTER_TAG) >= 0) + if (strstr(filter, DIRECTORY_FILTER_TAG) != NULL) { strcpy(files->paths[files->count], path); files->count++; @@ -3762,7 +3762,7 @@ static void ScanDirectoryFilesRecursively(const char *basePath, FilePathList *fi } else { - if ((filter != NULL) && (TextFindIndex(filter, DIRECTORY_FILTER_TAG) >= 0)) + if ((filter != NULL) && (strstr(filter, DIRECTORY_FILTER_TAG) != NULL)) { strcpy(files->paths[files->count], path); files->count++;