From 9b1416df5e57972c93274918135f4f5bfc28e932 Mon Sep 17 00:00:00 2001 From: SkrubbySkrubInAShrub Date: Thu, 16 Apr 2026 12:24:12 +0200 Subject: [PATCH] fix(Exponential-fog): disable by default to prevent unintended visuals --- src/Features/ExponentialHeightFog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Features/ExponentialHeightFog.h b/src/Features/ExponentialHeightFog.h index 0bfadd6b4a..b91b4e8a2c 100644 --- a/src/Features/ExponentialHeightFog.h +++ b/src/Features/ExponentialHeightFog.h @@ -33,7 +33,7 @@ struct ExponentialHeightFog : Feature struct alignas(16) Settings { - uint enabled = 1; + uint enabled = 0; uint useDynamicCubemaps = 0; float startDistance = 0.0f; float fogHeight = 0.0f;