summaryrefslogtreecommitdiffstats
path: root/libvo/vo_sdl.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-28 01:15:53 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-10-28 01:15:53 +0000
commit5b0d96c6b48482bc434d735b35089bbfc8751742 (patch)
treed4667543ec55dfa5a60c1595ebd0d39c9a3c83b7 /libvo/vo_sdl.c
parent2f1aaba2077247345dff53542c5ae121e7189456 (diff)
downloadmpv-5b0d96c6b48482bc434d735b35089bbfc8751742.tar.bz2
mpv-5b0d96c6b48482bc434d735b35089bbfc8751742.tar.xz
Handle "xxx.h" vs "../xxx.h" include paths in a consistent way.
Based on a patch by Sebastian Hegler <s_hegler at gmx dot de>. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13788 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libvo/vo_sdl.c')
-rw-r--r--libvo/vo_sdl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libvo/vo_sdl.c b/libvo/vo_sdl.c
index 59dccde1ab..e320709bb2 100644
--- a/libvo/vo_sdl.c
+++ b/libvo/vo_sdl.c
@@ -119,8 +119,8 @@
#include "x11_common.h"
#endif
-#include "../input/input.h"
-#include "../input/mouse.h"
+#include "input/input.h"
+#include "input/mouse.h"
extern int verbose;
int sdl_noxv;
@@ -1165,7 +1165,7 @@ static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int
* returns : doesn't return
**/
-#include "../osdep/keycodes.h"
+#include "osdep/keycodes.h"
extern void mplayer_put_key(int code);
#define shift_key (event.key.keysym.mod==(KMOD_LSHIFT||KMOD_RSHIFT))