Skip to content

Commit

Permalink
Fix up Salamander
Browse files Browse the repository at this point in the history
  • Loading branch information
inactive123 committed Oct 21, 2014
1 parent bc25407 commit d3e16f0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Makefile.ps3.salamander
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ endif

STRIP = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-strip.exe

PPU_CFLAGS += -I. -D__CELLOS_LV2__ -DIS_SALAMANDER -DRARCH_CONSOLE -DHAVE_SYSUTILS -DHAVE_SYSMODULES -DHAVE_RARCH_EXEC -DRARCH_INTERNAL
PPU_SRCS = frontend/frontend_salamander.c frontend/frontend_context.c frontend/platform/platform_ps3.c frontend/platform/platform_null.c file_path.c dir_list.c string_list.c compat/compat.c conf/config_file.c
PPU_CFLAGS += -I. -Ilibretro-sdk/include -D__CELLOS_LV2__ -DIS_SALAMANDER -DRARCH_CONSOLE -DHAVE_SYSUTILS -DHAVE_SYSMODULES -DHAVE_RARCH_EXEC -DRARCH_INTERNAL
PPU_SRCS = frontend/frontend_salamander.c frontend/frontend_context.c frontend/platform/platform_ps3.c frontend/platform/platform_null.c file_path.c dir_list.c string_list.c libretro-sdk/compat/compat.c conf/config_file.c

ifeq ($(HAVE_LOGGER), 1)
PPU_CFLAGS += -DHAVE_LOGGER -Ilogger/netlogger
Expand Down
4 changes: 2 additions & 2 deletions Makefile.psp1.salamander
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ else
OPTIMIZE_LV := -O2 -g
endif

INCDIR = $(PSPPATH)/include
INCDIR = $(PSPPATH)/include libretro-sdk/include
CFLAGS = $(OPTIMIZE_LV) -G0 -std=gnu99 -ffast-math
ASFLAGS = $(CFLAGS)

Expand All @@ -31,7 +31,7 @@ PSP_EBOOT_TITLE = RetroArch
PSP_EBOOT_ICON = psp1/ICON0.PNG
PSP_EBOOT_PIC1 = psp1/PIC1.PNG

OBJS = frontend/frontend_salamander.o frontend/frontend_context.o frontend/platform/platform_psp.o frontend/platform/platform_null.o file_path.o string_list.o dir_list.o compat/compat.o conf/config_file.o psp1/kernel_functions.o
OBJS = frontend/frontend_salamander.o frontend/frontend_context.o frontend/platform/platform_psp.o frontend/platform/platform_null.o file_path.o string_list.o dir_list.o libretro-sdk/compat/compat.o conf/config_file.o psp1/kernel_functions.o

PSPSDK=$(shell psp-config --pspsdk-path)
include $(PSPSDK)/lib/build.mak
4 changes: 2 additions & 2 deletions Makefile.wii.salamander
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ELF2DOL = $(DEVKITPPC)/bin/elf2dol$(EXE_EXT)
DOL_TARGET := retroarch-salamander_wii.dol
ELF_TARGET := retroarch-salamander_wii.elf

INCLUDE := -I. -I$(DEVKITPRO)/libogc/include
INCLUDE := -I. -I$(DEVKITPRO)/libogc/include -Ilibretro-sdk/include
LIBDIRS := -L$(DEVKITPRO)/libogc/lib/wii -L.

MACHDEP := -DGEKKO -DHW_RVL -mrvl -mcpu=750 -meabi -mhard-float
Expand All @@ -39,7 +39,7 @@ LIBS := -lfat -lwiiuse -logc -lbte

APP_BOOTER_DIR = wii/app_booter

OBJ = frontend/frontend_salamander.o frontend/frontend_context.o frontend/platform/platform_gx.o frontend/platform/platform_wii.o frontend/platform/platform_null.o file_path.o string_list.o dir_list.o compat/compat.o conf/config_file.o $(APP_BOOTER_DIR)/app_booter.binobj
OBJ = frontend/frontend_salamander.o frontend/frontend_context.o frontend/platform/platform_gx.o frontend/platform/platform_wii.o frontend/platform/platform_null.o file_path.o string_list.o dir_list.o libretro-sdk/compat/compat.o conf/config_file.o $(APP_BOOTER_DIR)/app_booter.binobj

ifeq ($(HAVE_LOGGER), 1)
CFLAGS += -DHAVE_LOGGER
Expand Down
2 changes: 1 addition & 1 deletion driver.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "libretro_private.h"
#include <stdlib.h>
#include <stdint.h>
#include <compat/msvc.h>
#include <compat/posix_string.h>
#include "gfx/scaler/scaler.h"
#include "gfx/image/image.h"
#include "gfx/filters/softfilter.h"
Expand Down

0 comments on commit d3e16f0

Please sign in to comment.