From b13c9716e48baac89a72d2c394b297b79e7384ef Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 25 Oct 2018 16:18:44 +0200 Subject: [PATCH] Fix GetDirectoryFiles description The comment sais it allows max 256 files, but the MAX_DIRECTORY_FILES define actually is set to 512. --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index a324bf0f6..af601e1d8 100644 --- a/src/core.c +++ b/src/core.c @@ -1629,7 +1629,7 @@ const char *GetWorkingDirectory(void) return currentDir; } -// Get filenames in a directory path (max 256 files) +// Get filenames in a directory path (max 512 files) // NOTE: Files count is returned by parameters pointer char **GetDirectoryFiles(const char *dirPath, int *fileCount) {