From c7b601b62465c7d38daed6fcc916bd94fdead1cf Mon Sep 17 00:00:00 2001 From: raysan5 Date: Sat, 13 Oct 2018 15:59:17 +0200 Subject: Renamed new PR function RENAME: GetLastWriteTime() to GetFileModTime() --- src/raylib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/raylib.h') diff --git a/src/raylib.h b/src/raylib.h index 1765b40b..e0b6a5a4 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -880,7 +880,7 @@ RLAPI bool ChangeDirectory(const char *dir); // Change work RLAPI bool IsFileDropped(void); // Check if a file has been dropped into window RLAPI char **GetDroppedFiles(int *count); // Get dropped files names (memory should be freed) RLAPI void ClearDroppedFiles(void); // Clear dropped files paths buffer (free memory) -RLAPI long GetLastWriteTime(const char *fileName); // Get last write time of a file +RLAPI long GetFileModTime(const char *fileName); // Get file modification time (last write time) // Persistent storage management RLAPI void StorageSaveValue(int position, int value); // Save integer value to storage file (to defined position) -- cgit v1.2.3