diff options
author | twinaphex | 2012-12-04 14:16:34 +0100 |
---|---|---|
committer | twinaphex | 2012-12-04 14:16:34 +0100 |
commit | 89d7ac2a566bc0ca8a12bdc6f920d9ee0578163a (patch) | |
tree | 6f10a0188824158704b09be75bd868a0afd0ba66 /Makefile | |
parent | 7f488e2836c5e7503bfb70bbea56a170bf352842 (diff) | |
download | pcsx_rearmed-89d7ac2a566bc0ca8a12bdc6f920d9ee0578163a.tar.gz pcsx_rearmed-89d7ac2a566bc0ca8a12bdc6f920d9ee0578163a.tar.bz2 pcsx_rearmed-89d7ac2a566bc0ca8a12bdc6f920d9ee0578163a.zip |
Make RGB565 support into compile-time option - all libretro frontends
should support this no matter what
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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" |