1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-16 19:43:06 +01:00
This commit is contained in:
Tulio Leao
2024-08-31 17:48:35 -03:00
parent 032874c80d
commit 06302f7f06
2 changed files with 2 additions and 1 deletions

View File

@@ -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)
------------------------------------------------------------------------

View File

@@ -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);
}