summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorRay <[email protected]>2016-06-06 14:34:43 +0200
committerRay <[email protected]>2016-06-06 14:34:43 +0200
commit29d505c98e6b24882927347cf24f5736d5f8c849 (patch)
tree9b3e0b1687161802e804ce9606697f2f1dcfa38c /src/core.c
parent688045307a20e64b797bf487e72375cfcfaee601 (diff)
downloadraylib-29d505c98e6b24882927347cf24f5736d5f8c849.tar.gz
raylib-29d505c98e6b24882927347cf24f5736d5f8c849.zip
Reorganize external libraries - BREAKING CHANGE -
Moved all external libraries used by raylib to external folder inside raylib src. Makefile has already been update and also the different includes in raylib modules.
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core.c b/src/core.c
index d229e1f8..4ba7505b 100644
--- a/src/core.c
+++ b/src/core.c
@@ -55,11 +55,11 @@
#include <errno.h> // Macros for reporting and retrieving error conditions through error codes
#if defined(PLATFORM_OCULUS)
- #define PLATFORM_DESKTOP // Enable PLATFORM_DESKTOP code-base
+ #define PLATFORM_DESKTOP // Enable PLATFORM_DESKTOP code-base
#endif
#if defined(PLATFORM_DESKTOP)
- #include "glad.h" // GLAD library: Manage OpenGL headers and extensions
+ #include "external/glad.h" // GLAD library: Manage OpenGL headers and extensions
#endif
#if defined(PLATFORM_OCULUS)