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/audio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/audio.c') diff --git a/src/audio.c b/src/audio.c index b5514b12..ad1d7eba 100644 --- a/src/audio.c +++ b/src/audio.c @@ -51,13 +51,13 @@ #endif //#define STB_VORBIS_HEADER_ONLY -#include "stb_vorbis.h" // OGG loading functions +#include "external/stb_vorbis.h" // OGG loading functions #define JAR_XM_IMPLEMENTATION -#include "jar_xm.h" // XM loading functions +#include "external/jar_xm.h" // XM loading functions #define JAR_MOD_IMPLEMENTATION -#include "jar_mod.h" // MOD loading functions +#include "external/jar_mod.h" // MOD loading functions //---------------------------------------------------------------------------------- // Defines and Macros -- cgit v1.2.3