Android: Add nes ntsc filters

This commit is contained in:
negativeExponent 2020-02-23 20:55:28 +08:00
parent 266bc3b92f
commit aa55f760f5
2 changed files with 4 additions and 2 deletions

View File

@ -18,8 +18,8 @@ SOURCES_C = $(CORE_DIR)/boards/*.c $(CORE_DIR)/input/*.c
endif
ifeq ($(HAVE_NTSC),1)
CFLAGS += -DHAVE_NTSC_FILTER -I$(CORE_DIR)/ntsc
SOURCES_C += $(CORE_DIR)/ntsc/nes_ntsc.c
COREDEFINES += -DHAVE_NTSC_FILTER -I$(CORE_DIR)/ntsc
SOURCES_C += $(CORE_DIR)/ntsc/nes_ntsc.c
endif
ifeq ($(HAVE_GRIFFIN),1)

View File

@ -2,6 +2,8 @@ LOCAL_PATH := $(call my-dir)
CORE_DIR := $(LOCAL_PATH)/../src
HAVE_NTSC := 1
include $(LOCAL_PATH)/../Makefile.common
COREFLAGS := $(COREDEFINES) -DPSS_STYLE=1 $(INCFLAGS)