1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Fix #14067: Nullptr exception in vehicle measurement code

This commit is contained in:
Duncan
2021-02-11 08:49:13 +00:00
committed by GitHub
parent fe8b8280e8
commit 14cca95fec

View File

@@ -1886,6 +1886,9 @@ void Vehicle::UpdateMeasurements()
continue;
rct_scenery_entry* scenery = tileElement->AsSmallScenery()->GetEntry();
if (scenery == nullptr)
continue;
if (scenery_small_entry_has_flag(scenery, SMALL_SCENERY_FLAG_FULL_TILE))
{
coverFound = true;