mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-21 19:45:10 +00:00
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
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -44,7 +44,7 @@ BETTERCAMERA ?= 1
|
|||
# Enable no drawing distance by default
|
||||
NODRAWINGDISTANCE ?= 1
|
||||
# Disable texture fixes by default (helps with them purists)
|
||||
TEXTURE_FIX ?= 1
|
||||
TEXTURE_FIX ?= 0
|
||||
# Enable extended options menu by default
|
||||
EXT_OPTIONS_MENU ?= 1
|
||||
# Disable text-based save-files by default
|
||||
|
|
Loading…
Reference in a new issue