aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2018-10-25 16:18:44 +0200
committerMichael Vetter <jubalh@iodoru.org>2018-10-25 16:18:44 +0200
commitb13c9716e48baac89a72d2c394b297b79e7384ef (patch)
tree60aa4aea648233d6eabbf85ced57b490211ab0cb /src
parent65b5de962d47e65876368499883cf2aa286c5617 (diff)
downloadraylib-b13c9716e48baac89a72d2c394b297b79e7384ef.tar.gz
raylib-b13c9716e48baac89a72d2c394b297b79e7384ef.zip
Fix GetDirectoryFiles description
The comment sais it allows max 256 files, but the MAX_DIRECTORY_FILES define actually is set to 512.
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index a324bf0f..af601e1d 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)
{