From 79be815827f1b0ae31e0961e5f74d677fcb80e97 Mon Sep 17 00:00:00 2001 From: Kolyah35 Date: Mon, 20 Jul 2026 23:01:12 +0300 Subject: [PATCH] help me --- src/client/Minecraft.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/client/Minecraft.cpp b/src/client/Minecraft.cpp index 8c90b6f..009c4cf 100755 --- a/src/client/Minecraft.cpp +++ b/src/client/Minecraft.cpp @@ -1197,12 +1197,15 @@ void Minecraft::init() TextureId grassId = (textures->loadTexture("misc/grasscolor.png")); // loading the uh png for foliage color int* grassPixels = textures->loadTexturePixels(grassId, "misc/grasscolor.png"); GrassColor::init(grassPixels); - +#ifndef __APPLE__ bool tint = options.getBooleanValue(OPTIONS_FOLIAGE_TINT); // finally, toggleable foliage color + bool sideTint = options.getBooleanValue(OPTIONS_TINTED_SIDE); +#else + bool tint = false, sideTint = false; +#endif FoliageColor::setUseTint(tint); GrassColor::setUseTint(tint); - bool sideTint = options.getBooleanValue(OPTIONS_TINTED_SIDE); TileRenderer::setUseTint(sideTint);