Support for 32bit color format

This commit is contained in:
negativeExponent
2025-09-01 22:07:53 +08:00
committed by LibretroAdmin
parent 3544ff567e
commit 033c5e2f32
7 changed files with 100 additions and 57 deletions

View File

@@ -14,8 +14,13 @@ endif
COREDEFINES = \
-D__LIBRETRO__ \
-DPATH_MAX=1024 \
-DFCEU_VERSION_NUMERIC=9813 \
-DFRONTEND_SUPPORTS_RGB565
-DFCEU_VERSION_NUMERIC=9813
ifeq ($(WANT_32BPP),1)
COREDEFINES += -DFRONTEND_SUPPORTS_RGB888
else
COREDEFINES += -DFRONTEND_SUPPORTS_RGB565
endif
FCEU_SRC_DIRS := \
$(CORE_DIR)/boards \