1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-30 10:15:36 +01:00

Rename ObjectType enum to follow recent code style (#23810)

This commit is contained in:
Aaron van Geffen
2025-02-13 23:07:55 +01:00
committed by GitHub
parent b9b2c96c97
commit bb94ee8bc0
75 changed files with 446 additions and 446 deletions

View File

@@ -65,6 +65,6 @@ void TerrainEdgeObject::ReadJson(IReadObjectContext* context, json_t& root)
TerrainEdgeObject* TerrainEdgeObject::GetById(ObjectEntryIndex entryIndex)
{
auto& objMgr = OpenRCT2::GetContext()->GetObjectManager();
auto* obj = objMgr.GetLoadedObject(ObjectType::TerrainEdge, entryIndex);
auto* obj = objMgr.GetLoadedObject(ObjectType::terrainEdge, entryIndex);
return static_cast<TerrainEdgeObject*>(obj);
}