From 9ece0eeeb8f32213b0818cb657e897985a67a405 Mon Sep 17 00:00:00 2001 From: XenoMustache Date: Mon, 2 Feb 2026 03:12:38 -0700 Subject: [PATCH] Added documentation comments for --- 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) {