summaryrefslogtreecommitdiffhomepage
path: root/src/external
diff options
context:
space:
mode:
authorRay <[email protected]>2018-10-08 18:38:39 +0200
committerRay <[email protected]>2018-10-08 18:38:39 +0200
commit717cf77129bd30099e489a29ae19dc053923264d (patch)
treec6c3e14c76d226457b88bd087ac606473c1b4974 /src/external
parent2652e7d1c1051852e7f2ebf0e71396ac645c6713 (diff)
downloadraylib-717cf77129bd30099e489a29ae19dc053923264d.tar.gz
raylib-717cf77129bd30099e489a29ae19dc053923264d.zip
Corrected issue with dirent.h inclusion...
...and MacOSX OBJC types definition...
Diffstat (limited to 'src/external')
-rw-r--r--src/external/glfw/include/GLFW/glfw3native.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/external/glfw/include/GLFW/glfw3native.h b/src/external/glfw/include/GLFW/glfw3native.h
index 463a7a71..d585496c 100644
--- a/src/external/glfw/include/GLFW/glfw3native.h
+++ b/src/external/glfw/include/GLFW/glfw3native.h
@@ -102,7 +102,7 @@ extern "C" {
#import <Cocoa/Cocoa.h>
#else
// RAY: Added protection in case OBJC types defined
- #if !defined(OBJC_TYPES_DEFINED)
+ #if !OBJC_TYPES_DEFINED
typedef void* id;
#endif
#endif