summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2023-07-02 10:50:40 +0200
committerRay <[email protected]>2023-07-02 10:50:40 +0200
commitdf90da0b3750b654c1ec660f83e461aae03a3b6b (patch)
treeb98678d550320f9ae9a43c4b037018da890bb090 /src
parente190b7eee9199b681a8c50fb69f2fce07e92c7af (diff)
downloadraylib-df90da0b3750b654c1ec660f83e461aae03a3b6b.tar.gz
raylib-df90da0b3750b654c1ec660f83e461aae03a3b6b.zip
Update rcore.c
Diffstat (limited to 'src')
-rw-r--r--src/rcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c
index d02ea2b9..bba8f5ef 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -3219,7 +3219,7 @@ const char *GetApplicationDirectory(void)
#if defined(_WIN32)
int len = 0;
-#if defined (UNICODE)
+#if defined(UNICODE)
unsigned short widePath[MAX_PATH];
len = GetModuleFileNameW(NULL, widePath, MAX_PATH);
len = WideCharToMultiByte(0, 0, widePath, len, appDir, MAX_PATH, NULL, NULL);