summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2018-10-13 15:59:17 +0200
committerraysan5 <[email protected]>2018-10-13 15:59:17 +0200
commitc7b601b62465c7d38daed6fcc916bd94fdead1cf (patch)
tree887537cbc18b133088b77a9d833d95387910c56d /src/raylib.h
parentfc4e9e7a37a0f8470c17a2b35b5611ad340a3cb2 (diff)
downloadraylib-c7b601b62465c7d38daed6fcc916bd94fdead1cf.tar.gz
raylib-c7b601b62465c7d38daed6fcc916bd94fdead1cf.zip
Renamed new PR function
RENAME: GetLastWriteTime() to GetFileModTime()
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
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)