From 2a6551a62ac7d3c1a35826fe64bb5f0f63004379 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Fri, 16 Mar 2012 23:31:26 +0100 Subject: [PATCH] Fixup includes --- Makefile.ps3 | 4 ++-- compat/getopt.c | 6 +++--- gfx/shader_cg.c | 4 ++-- ps3/ps3_video_psgl.c | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile.ps3 b/Makefile.ps3 index d701c09c63..a413953b49 100644 --- a/Makefile.ps3 +++ b/Makefile.ps3 @@ -48,7 +48,7 @@ PPU_SRCS = fifo_buffer.c \ input/input_luts.c \ ps3/cellframework2/input/pad_input.c \ ps3/cellframework2/utility/oskutil.c \ - getopt.c \ + compat/getopt.c \ ssnes.c \ driver.c \ file.c \ @@ -63,7 +63,7 @@ PPU_SRCS = fifo_buffer.c \ gfx/snes_state.c \ ups.c \ bps.c \ - strl.c \ + compat/strl.c \ audio/hermite.c \ audio/rsound.c \ dynamic.c \ diff --git a/compat/getopt.c b/compat/getopt.c index 87cf91520b..f189baee39 100644 --- a/compat/getopt.c +++ b/compat/getopt.c @@ -20,11 +20,11 @@ #ifndef HAVE_GETOPT_LONG #include -#include "boolean.h" +#include "../boolean.h" #include #include -#include "msvc/msvc_compat.h" -#include "general.h" +#include "../msvc/msvc_compat.h" +#include "../general.h" char *optarg; int optind, opterr, optopt; diff --git a/gfx/shader_cg.c b/gfx/shader_cg.c index 9379f39d38..31eb1f1928 100644 --- a/gfx/shader_cg.c +++ b/gfx/shader_cg.c @@ -20,11 +20,11 @@ #include #include "../general.h" #include -#include "../strl.h" +#include "../compat/strl.h" #include "../conf/config_file.h" #include "image.h" #include "../dynamic.h" -#include "../posix_string.h" +#include "../compat/posix_string.h" #ifdef HAVE_CONFIGFILE #include "snes_state.h" diff --git a/ps3/ps3_video_psgl.c b/ps3/ps3_video_psgl.c index a5e5fbf244..99a0fe0542 100644 --- a/ps3/ps3_video_psgl.c +++ b/ps3/ps3_video_psgl.c @@ -37,7 +37,7 @@ #include "config.h" #endif -#include "../strl.h" +#include "../compat/strl.h" #include "../gfx/shader_cg.h"