Get rid of HAVE_GRIFFIN - not used

This commit is contained in:
twinaphex 2022-04-09 16:50:14 +02:00
parent b12f3ba46f
commit cdb92edbad
3 changed files with 0 additions and 32 deletions

View File

@ -1,6 +1,5 @@
DEBUG=0
GIT_VERSION := " $(shell git rev-parse --short HEAD)"
HAVE_GRIFFIN=0
STATIC_LINKING=0
STATIC_LINKING_LINK=0
LAGFIX=1
@ -202,8 +201,6 @@ THEOS_BUILD_DIR := objs
include $(THEOS)/makefiles/common.mk
LIBRARY_NAME = $(TARGET_NAME)_libretro_ios
HAVE_GRIFFIN = 1
# QNX
else ifeq ($(platform), qnx)

View File

@ -16,9 +16,6 @@ ifeq ($(LAGFIX),1)
COREDEFINES += -DLAGFIX
endif
ifeq ($(HAVE_GRIFFIN), 1)
SOURCES_C := $(CORE_DIR)/src/snes9x_griffin.c $(CORE_DIR)/src/sa1.c
else
SOURCES_C := $(CORE_DIR)/src/apu.c \
$(CORE_DIR)/src/bsx.c \
$(CORE_DIR)/src/c4emu.c \
@ -61,5 +58,3 @@ SOURCES_C += \
$(LIBRETRO_COMM_DIR)/time/rtime.c \
$(LIBRETRO_COMM_DIR)/vfs/vfs_implementation.c
endif
endif

View File

@ -1,24 +0,0 @@
#include "apu.c"
#include "bsx.c"
#include "c4emu.c"
#include "cheats.c"
#include "controls.c"
#include "cpu.c"
#include "cpuexec.c"
#include "dsp.c"
#include "fxemu.c"
#include "globals.c"
#include "memmap.c"
#include "obc1.c"
#include "ppu.c"
#include "sdd1.c"
#include "seta.c"
#include "snapshot.c"
#include "spc7110.c"
#include "srtc.c"
#include "tile.c"
#include "hwregisters.c"
#include "../libretro/libretro.c"
#ifndef STATIC_LINKING
#include "../libretro/libretro-common/streams/memory_stream.c"
#endif