From a5a3dfdec938dbc4e6d86c5a848250bc69a20050 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Mon, 20 Feb 2023 21:48:53 -0500 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 731268de..06ef2e54 100644 --- a/Makefile +++ b/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