From 29d505c98e6b24882927347cf24f5736d5f8c849 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 6 Jun 2016 14:34:43 +0200 Subject: 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. --- src/core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core.c') 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 // 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) -- cgit v1.2.3