1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 19:13:07 +01:00

Make support transparency invisible by default

This commit is contained in:
Hielke Morsink
2022-08-08 19:04:02 +02:00
parent 980e3cbc4c
commit 9e1b24d977

View File

@@ -222,7 +222,7 @@ namespace Config
model->invisible_trees = reader->GetBoolean("invisible_trees", false);
model->invisible_scenery = reader->GetBoolean("invisible_scenery", false);
model->invisible_paths = reader->GetBoolean("invisible_paths", false);
model->invisible_supports = reader->GetBoolean("invisible_supports", false);
model->invisible_supports = reader->GetBoolean("invisible_supports", true);
model->last_version_check_time = reader->GetInt64("last_version_check_time", 0);
}