gIsVC is introduced, VC_HACKS define is removed

This commit is contained in:
aglab2
2021-09-05 16:59:50 +08:00
parent 4c655bfdc0
commit 6ba869691b
5 changed files with 36 additions and 19 deletions

View File

@@ -20,9 +20,6 @@ USE_DEBUG := 0
# Build for the N64 (turn this off for ports)
TARGET_N64 ?= 1
# Virtual Console hacks. Enabling this makes your hack (hopefully) compatible with the Wii Virtual Console.
# One of the thing this does is disable the instant input patch, so do NOT use this for your normal z64 release.
VC_HACKS ?= 0
# CONSOLE - selects the console to target
# bb - Targets the iQue Player (codenamed BB)
@@ -39,10 +36,6 @@ else ifeq ($(CONSOLE),bb)
DEFINES += BBPLAYER=1
endif
ifeq ($(VC_HACKS), 1)
DEFINES += VC_HACKS=1
endif
# COMPILER - selects the C compiler to use
# gcc - uses the GNU C Compiler
# clang - uses clang C/C++ frontend for LLVM