summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--input/input.c12
-rw-r--r--input/joystick.c2
-rw-r--r--input/lirc.c6
3 files changed, 10 insertions, 10 deletions
diff --git a/input/input.c b/input/input.c
index a2531387be..b9b5d4fcb0 100644
--- a/input/input.c
+++ b/input/input.c
@@ -1,4 +1,4 @@
-#include "../config.h"
+#include "config.h"
#include <stdlib.h>
#include <string.h>
@@ -17,13 +17,13 @@
#ifdef MP_DEBUG
#include <assert.h>
#endif
-#include "../osdep/getch2.h"
-#include "../osdep/keycodes.h"
-#include "../osdep/timer.h"
+#include "osdep/getch2.h"
+#include "osdep/keycodes.h"
+#include "osdep/timer.h"
#include "mp_msg.h"
#include "help_mp.h"
-#include "../m_config.h"
-#include "../m_option.h"
+#include "m_config.h"
+#include "m_option.h"
#include "joystick.h"
diff --git a/input/joystick.c b/input/joystick.c
index 7fc687d39c..0ddbb70e37 100644
--- a/input/joystick.c
+++ b/input/joystick.c
@@ -1,5 +1,5 @@
-#include "../config.h"
+#include "config.h"
#ifdef HAVE_JOYSTICK
diff --git a/input/lirc.c b/input/lirc.c
index 88dd27dcf6..411561bc52 100644
--- a/input/lirc.c
+++ b/input/lirc.c
@@ -1,5 +1,5 @@
-#include "../config.h"
+#include "config.h"
#ifdef HAVE_LIRC
@@ -12,8 +12,8 @@
#include <sys/time.h>
#include <stdlib.h>
-#include "../mp_msg.h"
-#include "../help_mp.h"
+#include "mp_msg.h"
+#include "help_mp.h"
#include "input.h"
static struct lirc_config *lirc_config;