aboutsummaryrefslogtreecommitdiffstats
path: root/src/gaudio
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2015-11-21 19:27:08 +1000
committerinmarket <andrewh@inmarket.com.au>2015-11-21 19:27:08 +1000
commitc5a86757bd8309027d50f82d8947250c8e1197e6 (patch)
treef37f1a93fea959e870833022479603cd92702ea4 /src/gaudio
parenta69849177d6e7d396ea36a8160428e327811729b (diff)
downloaduGFX-c5a86757bd8309027d50f82d8947250c8e1197e6.tar.gz
uGFX-c5a86757bd8309027d50f82d8947250c8e1197e6.tar.bz2
uGFX-c5a86757bd8309027d50f82d8947250c8e1197e6.zip
Make all include paths in ugfx relative.
The only include path now needed is for drivers (in particular GDISP drivers)
Diffstat (limited to 'src/gaudio')
-rw-r--r--src/gaudio/gaudio.c2
-rw-r--r--src/gaudio/gaudio.h2
-rw-r--r--src/gaudio/gaudio_driver_play.h2
-rw-r--r--src/gaudio/gaudio_driver_record.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/gaudio/gaudio.c b/src/gaudio/gaudio.c
index 0abc9382..a9f20357 100644
--- a/src/gaudio/gaudio.c
+++ b/src/gaudio/gaudio.c
@@ -5,7 +5,7 @@
* http://ugfx.org/license.html
*/
-#include "gfx.h"
+#include "../../gfx.h"
#if GFX_USE_GAUDIO
diff --git a/src/gaudio/gaudio.h b/src/gaudio/gaudio.h
index 23403b15..7473373c 100644
--- a/src/gaudio/gaudio.h
+++ b/src/gaudio/gaudio.h
@@ -18,7 +18,7 @@
#ifndef _GAUDIO_H
#define _GAUDIO_H
-#include "gfx.h"
+#include "../../gfx.h"
#if GFX_USE_GAUDIO || defined(__DOXYGEN__)
diff --git a/src/gaudio/gaudio_driver_play.h b/src/gaudio/gaudio_driver_play.h
index 56c37347..622769f1 100644
--- a/src/gaudio/gaudio_driver_play.h
+++ b/src/gaudio/gaudio_driver_play.h
@@ -20,7 +20,7 @@
#ifndef _GAUDIO_PLAY_LLD_H
#define _GAUDIO_PLAY_LLD_H
-#include "gfx.h"
+#include "../../gfx.h"
#if (GFX_USE_GAUDIO && GAUDIO_NEED_PLAY) || defined(__DOXYGEN__)
diff --git a/src/gaudio/gaudio_driver_record.h b/src/gaudio/gaudio_driver_record.h
index 0b63df61..5cbe4532 100644
--- a/src/gaudio/gaudio_driver_record.h
+++ b/src/gaudio/gaudio_driver_record.h
@@ -20,7 +20,7 @@
#ifndef _GAUDIO_RECORD_LLD_H
#define _GAUDIO_RECORD_LLD_H
-#include "gfx.h"
+#include "../../gfx.h"
#if (GFX_USE_GAUDIO && GAUDIO_NEED_RECORD) || defined(__DOXYGEN__)