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

Fix errors

This commit is contained in:
Ted John
2018-02-07 20:37:20 +00:00
committed by Gymnasiast
parent b207797ad2
commit 7ea5c1f099
3 changed files with 29 additions and 23 deletions

View File

@@ -38,9 +38,9 @@ void SceneryGroupObject::ReadLegacy(IReadObjectContext * context, IStream * stre
_legacyType.pad_109 = stream->ReadValue<uint8>();
_legacyType.entertainer_costumes = stream->ReadValue<uint32>();
GetStringTable()->Read(context, stream, OBJ_STRING_ID_NAME);
GetStringTable().Read(context, stream, OBJ_STRING_ID_NAME);
_items = ReadItems(stream);
GetImageTable()->Read(context, stream);
GetImageTable().Read(context, stream);
}
void SceneryGroupObject::Load()