diff options
| author | Michael Vetter <jubalh@iodoru.org> | 2018-10-25 16:18:44 +0200 |
|---|---|---|
| committer | Michael Vetter <jubalh@iodoru.org> | 2018-10-25 16:18:44 +0200 |
| commit | b13c9716e48baac89a72d2c394b297b79e7384ef (patch) | |
| tree | 60aa4aea648233d6eabbf85ced57b490211ab0cb /src | |
| parent | 65b5de962d47e65876368499883cf2aa286c5617 (diff) | |
| download | raylib-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |
