Skip to content

Commit

Permalink
Update raylib.c3i
Browse files Browse the repository at this point in the history
changed loadDirectoryFiles to raylib 55 to follow new function signture and unloadDirectoryFiles missed the necessary argument
  • Loading branch information
HMart81 committed Jan 6, 2025
1 parent 4963dc4 commit 17bc1d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/raylib55.c3l/raylib.c3i
Original file line number Diff line number Diff line change
Expand Up @@ -883,11 +883,11 @@ fn bool isPathFile(ZString path) @extern("IsPathFile");
// Check if fileName is valid for the platform/OS
fn bool isFileNameValid(char *fileName)@extern("IsFileNameValid");
// Load directory filepaths
fn FilePathList loadDirectoryFiles(ZString dirPath, int* count) @extern("LoadDirectoryFiles");
fn FilePathList loadDirectoryFiles(ZString dirPath) @extern("LoadDirectoryFiles");
// Load directory filepaths with extension filtering and recursive directory scan
fn FilePathList loadDirectoryFilesEx(ZString basePath, ZString filter, bool scanSubdirs) @extern("LoadDirectoryFilesEx");
// Clear directory files paths buffers (free memory)
fn void unloadDirectoryFiles() @extern("UnloadDirectoryFiles");
fn void unloadDirectoryFiles(FilePathList files) @extern("UnloadDirectoryFiles");
// Check if a file has been dropped into window
fn bool isFileDropped() @extern("IsFileDropped");
// Load dropped filepaths
Expand Down

0 comments on commit 17bc1d5

Please sign in to comment.