diff options
author | jdgleaver | 2020-10-15 17:00:00 +0100 |
---|---|---|
committer | jdgleaver | 2020-10-15 17:00:00 +0100 |
commit | 23294848d036e19ca45b8b511d343c95b9f914e6 (patch) | |
tree | 976ef8cf2b58958ad4888f97fa736916d6064386 /Makefile | |
parent | 8c24c86a49b23086941814e3ae1d58a2993dac7a (diff) | |
download | snes9x2005-23294848d036e19ca45b8b511d343c95b9f914e6.tar.gz snes9x2005-23294848d036e19ca45b8b511d343c95b9f914e6.tar.bz2 snes9x2005-23294848d036e19ca45b8b511d343c95b9f914e6.zip |
Add 'USE_OLD_COLOUR_OPS' flag + PSP ifdef guards
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,6 +3,7 @@ PERF_TEST = 0 LOAD_FROM_MEMORY_TEST = 1 USE_BLARGG_APU = 0 LAGFIX = 1 +USE_OLD_COLOUR_OPS = 0 SPACE := SPACE := $(SPACE) $(SPACE) @@ -205,6 +206,7 @@ else ifeq ($(platform), psp1) -fno-builtin -fno-exceptions -ffunction-sections DEFS += -DPSP -D_PSP_FW_VERSION=371 STATIC_LINKING := 1 + USE_OLD_COLOUR_OPS = 1 # Vita else ifeq ($(platform), vita) TARGET := $(TARGET_NAME)_libretro_$(platform).a |