summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2022-01-10 13:54:51 +0100
committerRay <[email protected]>2022-01-10 13:54:51 +0100
commitb4e0ed6007727e1b8259e076b2f09c68e46bce1f (patch)
tree93d98124c1385baea41383125f3e98656e299b0e /src/raylib.h
parenta6aa5a1e4c34e7d8dfbede6d17ee40f7648265bb (diff)
downloadraylib-b4e0ed6007727e1b8259e076b2f09c68e46bce1f.tar.gz
raylib-b4e0ed6007727e1b8259e076b2f09c68e46bce1f.zip
Review formating
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 04795de5..a2e3ea9c 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1047,7 +1047,7 @@ RLAPI const char *GetFileNameWithoutExt(const char *filePath); // Get filenam
RLAPI const char *GetDirectoryPath(const char *filePath); // Get full path for a given fileName with path (uses static string)
RLAPI const char *GetPrevDirectoryPath(const char *dirPath); // Get previous directory path for a given path (uses static string)
RLAPI const char *GetWorkingDirectory(void); // Get current working directory (uses static string)
-RLAPI const char* GetApplicationDirectory(void); // Get the directory if the running application (uses static string)
+RLAPI const char *GetApplicationDirectory(void); // Get the directory if the running application (uses static string)
RLAPI char **GetDirectoryFiles(const char *dirPath, int *count); // Get filenames in a directory path (memory should be freed)
RLAPI void ClearDirectoryFiles(void); // Clear directory files paths buffers (free memory)
RLAPI bool ChangeDirectory(const char *dir); // Change working directory, return true on success