diff options
| -rw-r--r-- | cheatsheet/raylib_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cheatsheet/raylib_core.c b/cheatsheet/raylib_core.c index c2afba3..2f5650f 100644 --- a/cheatsheet/raylib_core.c +++ b/cheatsheet/raylib_core.c @@ -138,8 +138,8 @@ void ClearDirectoryFiles(void); // Clear directory files paths buffers (free memory) bool ChangeDirectory(const char *dir); // Change working directory, return true on success bool IsFileDropped(void); // Check if a file has been dropped into window - char **GetDroppedFiles(int *count); // Get dropped files names (memory should be freed) - void ClearDroppedFiles(void); // Clear dropped files paths buffer (free memory) + char **LoadDroppedFiles(int *count); // Get dropped files names (memory should be freed) + void UnloadDroppedFiles(void); // Clear dropped files paths buffer (free memory) long GetFileModTime(const char *fileName); // Get file modification time (last write time) // Compression/Encoding functionality |
