From 06302f7f0637bc98e94bdcac27b2b047b34d083f Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Sat, 31 Aug 2024 17:48:35 -0300 Subject: [PATCH] Revert 9e1b24d --- distribution/changelog.txt | 1 + src/openrct2/config/Config.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 9658d0464b..eb869f1309 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -27,6 +27,7 @@ - Fix: [#22593] Memory leak on Android builds when reading zip files. - Fix: [#22606] Virtual floor is sometimes drawn above the path when placing paths. - Fix: [#22625] Fix compilation with orignal ride ratings. +- Fix: [#22671] Game default to hide supports on startup. 0.4.13 (2024-08-04) ------------------------------------------------------------------------ diff --git a/src/openrct2/config/Config.cpp b/src/openrct2/config/Config.cpp index 62d44ef40b..26baa662dd 100644 --- a/src/openrct2/config/Config.cpp +++ b/src/openrct2/config/Config.cpp @@ -248,7 +248,7 @@ namespace OpenRCT2::Config model->InvisibleTrees = reader->GetBoolean("invisible_trees", false); model->InvisibleScenery = reader->GetBoolean("invisible_scenery", false); model->InvisiblePaths = reader->GetBoolean("invisible_paths", false); - model->InvisibleSupports = reader->GetBoolean("invisible_supports", true); + model->InvisibleSupports = reader->GetBoolean("invisible_supports", false); model->LastVersionCheckTime = reader->GetInt64("last_version_check_time", 0); }