From 33dcd6266386f583b81a83ff991ae29367978cf0 Mon Sep 17 00:00:00 2001 From: Aly Date: Mon, 2 Feb 2026 03:21:10 -0700 Subject: [PATCH] Added documentation comments for (#5525) --- src/rcore.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rcore.c b/src/rcore.c index 810915040..4cae00f01 100644 --- a/src/rcore.c +++ b/src/rcore.c @@ -2762,6 +2762,8 @@ FilePathList LoadDirectoryFiles(const char *dirPath) } // Load directory filepaths with extension filtering and recursive directory scan +// Use 'DIR*' to include directories on directory scan +// Use '*.*' to include all file types and directories on directory scan // WARNING: Directory is scanned twice, first time to get files count FilePathList LoadDirectoryFilesEx(const char *basePath, const char *filter, bool scanSubdirs) {