Fix incorrect value for Makefile option (#269)
The comment for TEXTURE_FIX states "Disable texture fixes by default (helps with them purists)" and in spite of that, TEXTURE_FIX is set to 1 (on) This PR simply sets it back to 0 as the comment intends the value to be, I just noticed this and saw an opportunity to make a PR for it. This doesn't have to be merged and all it does is restore the old smoke and pink on the Koopa's back.
This commit is contained in:
parent
4aada40a62
commit
a5a3dfdec9
2
Makefile
2
Makefile
|
@ -44,7 +44,7 @@ BETTERCAMERA ?= 1
|
||||||
# Enable no drawing distance by default
|
# Enable no drawing distance by default
|
||||||
NODRAWINGDISTANCE ?= 1
|
NODRAWINGDISTANCE ?= 1
|
||||||
# Disable texture fixes by default (helps with them purists)
|
# Disable texture fixes by default (helps with them purists)
|
||||||
TEXTURE_FIX ?= 1
|
TEXTURE_FIX ?= 0
|
||||||
# Enable extended options menu by default
|
# Enable extended options menu by default
|
||||||
EXT_OPTIONS_MENU ?= 1
|
EXT_OPTIONS_MENU ?= 1
|
||||||
# Disable text-based save-files by default
|
# Disable text-based save-files by default
|
||||||
|
|
Loading…
Reference in New Issue