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

Remove some unused symbols (#17808)

This commit is contained in:
Michael Steenbeek
2022-08-13 23:24:15 +02:00
committed by GitHub
parent f9bb5b2447
commit a07daae770
6 changed files with 0 additions and 38 deletions

View File

@@ -654,18 +654,6 @@ bool IsObjectCustom(const ObjectRepositoryItem* object)
}
}
const rct_object_entry* object_list_find(rct_object_entry* entry)
{
const rct_object_entry* result = nullptr;
auto& objRepo = GetContext()->GetObjectRepository();
auto item = objRepo.FindObject(entry);
if (item != nullptr)
{
result = &item->ObjectEntry;
}
return result;
}
std::unique_ptr<Object> object_repository_load_object(const rct_object_entry* objectEntry)
{
std::unique_ptr<Object> object;