From 5ed761b3a9a219cffa17279ca234b3861b6ae4c1 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 6 Jun 2022 20:40:15 +0200 Subject: WARNING: RENAMED: `GetDroppedFiles()` to `LoadDroppedFiles()` --- cheatsheet/raylib_core.c | 4 ++-- 1 file 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 -- cgit v1.2.3