diff --git a/Makefile.psl1ght b/Makefile.psl1ght index 04cd463512..8cb1087c82 100644 --- a/Makefile.psl1ght +++ b/Makefile.psl1ght @@ -17,7 +17,7 @@ ELF_TARGET := retroarch_psl1ght.elf EBOOT_PATH = ps3/pkg/USRDIR/EBOOT.BIN CORE_PATH = ps3/pkg/USRDIR/cores/CORE.SELF -INCLUDE := -I. -I$(PS3DEV)/ppu/include -Ideps/rzlib -Ips3/rgl/include/export +INCLUDE := -I. -I$(PS3DEV)/ppu/include -Ideps/rzlib -Ips3/rgl/include/export -Ips3/include LIBDIRS := -L$(PS3DEV)/ppu/lib -L$(PS3DEV)/portlibs/ppu/lib -L. MACHDEP := -D__CELLOS_LV2__ -D__PSL1GHT__ diff --git a/ps3/include/sdk_version.h b/ps3/include/sdk_version.h new file mode 100644 index 0000000000..c8fb95cd50 --- /dev/null +++ b/ps3/include/sdk_version.h @@ -0,0 +1,8 @@ +#ifndef _PS3_SDK_VERSION +#define _PS3_SDK_VERSION + +#ifndef __PSL1GHT__ +#include +#endif + +#endif diff --git a/ps3/ps3_input.c b/ps3/ps3_input.c index 477f98b3ab..557537e45b 100644 --- a/ps3/ps3_input.c +++ b/ps3/ps3_input.c @@ -17,10 +17,7 @@ #include #include -#ifndef __PSL1GHT__ #include -#endif - #include "../boolean.h" #include "sdk_defines.h"