aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortwinaphex2012-12-04 14:16:34 +0100
committernotaz2012-12-10 23:20:59 +0200
commit46aa5b98890412bca8487b28809df3ece137dba9 (patch)
tree6f10a0188824158704b09be75bd868a0afd0ba66 /Makefile
parentf9f60dae01fe8a8262d52950893c2674c4545f4a (diff)
downloadpcsx_rearmed-46aa5b98890412bca8487b28809df3ece137dba9.tar.gz
pcsx_rearmed-46aa5b98890412bca8487b28809df3ece137dba9.tar.bz2
pcsx_rearmed-46aa5b98890412bca8487b28809df3ece137dba9.zip
libretro: make RGB565 support into compile-time option
all libretro frontends should support this no matter what
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0c7854d..2ca2fdd 100644
--- a/Makefile
+++ b/Makefile
@@ -120,7 +120,7 @@ OBJS += plugins/gpu_unai/gpulib_if.o
ifeq "$(ARCH)" "arm"
OBJS += plugins/gpu_unai/gpu_arm.o
endif
-plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
+plugins/gpu_unai/gpulib_if.o: CFLAGS += -DREARMED -O3
CC_LINK = $(CXX)
endif
@@ -163,6 +163,7 @@ USE_PLUGIN_LIB = 1
endif
ifeq "$(PLATFORM)" "libretro"
OBJS += frontend/libretro.o
+CFLAGS += -DFRONTEND_SUPPORTS_RGB565
endif
ifeq "$(USE_PLUGIN_LIB)" "1"