1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-27 16:54:52 +01:00

Introduce RCT2 namespace (#16037)

* Introduce RCT2 namespace

* Drop RCT2:: prefix where possible

* Drop RCT2 from structure names

* Reduce header includes
This commit is contained in:
Duncan
2021-11-28 16:51:38 +00:00
committed by GitHub
parent c7851983e4
commit cc22b584fd
21 changed files with 3437 additions and 3410 deletions

View File

@@ -357,7 +357,7 @@ static std::optional<rct_object_entry> track_design_save_footpath_get_best_entry
auto surfaceId = surfaceEntry->GetIdentifier();
auto railingsEntry = pathElement->GetRailingsEntry();
auto railingsId = railingsEntry == nullptr ? "" : railingsEntry->GetIdentifier();
return GetBestObjectEntryForSurface(surfaceId, railingsId);
return RCT2::GetBestObjectEntryForSurface(surfaceId, railingsId);
}
}
return {};