diff --git a/Makefile.ps3 b/Makefile.ps3 index 1af308ba01..c3d7161e6d 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 \ - compat/getopt.c \ + compat/compat.c \ ssnes.c \ driver.c \ file.c \ @@ -61,7 +61,6 @@ PPU_SRCS = fifo_buffer.c \ gfx/shader_cg.c \ gfx/snes_state.c \ patch.c \ - compat/strl.c \ audio/hermite.c \ audio/rsound.c \ dynamic.c \ diff --git a/Makefile.ps3.salamander b/Makefile.ps3.salamander index c7c53b96d7..89c0e79687 100644 --- a/Makefile.ps3.salamander +++ b/Makefile.ps3.salamander @@ -1,4 +1,4 @@ -CELL_BUILD_TOOLS = SNC +CELL_BUILD_TOOLS = GCC CELL_SDK ?= /usr/local/cell CELL_GPU_TYPE = RSX CELL_PSGL_VERSION = opt @@ -18,7 +18,7 @@ C = $(CELL_HOST_PATH)/ppu/bin/ppu-lv2-gcc CC = $(CELL_HOST_PATH)/ppu/bin/ppu-lv2-g++ PPU_CFLAGS += -I. -O2 -g -PPU_SRCS = ps3/salamander/main.c strl.c conf/config_file.c +PPU_SRCS = ps3/salamander/main.c compat/compat.c conf/config_file.c ifeq ($(HAVE_LOGGER), 1) PPU_CFLAGS += -DHAVE_LOGGER diff --git a/ps3/salamander/main.c b/ps3/salamander/main.c index 08f1680dd0..e42330ee88 100644 --- a/ps3/salamander/main.c +++ b/ps3/salamander/main.c @@ -27,7 +27,7 @@ #include #include -#include "../../strl.h" +#include "../../compat/strl.h" #include "../../conf/config_file.h" #define PATH_MAX (512UL)