1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-17 12:03:07 +01:00

Fix many warnings for x64

This commit is contained in:
Ted John
2016-08-27 23:32:15 +01:00
parent 1f398a69ff
commit 8cf7e87b5c
58 changed files with 187 additions and 173 deletions

View File

@@ -134,6 +134,6 @@ void SceneryGroupObject::ReadItems(IStream * stream)
items.push_back(entry);
}
_numItems = items.size();
_numItems = (uint32)items.size();
_items = Memory::DuplicateArray(items.data(), items.size());
}