Add compile-time texture fixes to Makefile

Add compile-time texture fixes as a Makefile build flag, set when `TEXTURE_FIX=1`.
This commit is contained in:
Colton G. Rushton 2020-05-16 09:41:57 -03:00 committed by GitHub
parent 03b129c5bf
commit a83fa35c4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -29,6 +29,8 @@ COMPILER ?= ido
BETTERCAMERA ?= 0
# Disable no drawing distance by default
NODRAWINGDISTANCE ?= 0
# Disable texture fixes by default (helps with them purists)
TEXTURE_FIX ?= 0
# Build for Emscripten/WebGL
TARGET_WEB ?= 0
@ -458,6 +460,12 @@ CC_CHECK += -DNODRAWINGDISTANCE
CFLAGS += -DNODRAWINGDISTANCE
endif
# Check for texture fix option
ifeq ($(TEXTURE_FIX),1)
CC_CHECK += -DTEXTURE_FIX
CFLAGS += -DTEXTURE_FIX
endif
ASFLAGS := -I include -I $(BUILD_DIR) $(VERSION_ASFLAGS)
ifeq ($(TARGET_WEB),1)