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

refactor object factory loading

This commit is contained in:
Ted John
2016-07-01 21:22:18 +01:00
parent 8ce9a66286
commit 72f7f0f329
3 changed files with 58 additions and 46 deletions

View File

@@ -53,7 +53,7 @@ MemoryStream::MemoryStream(size_t capacity)
_position = _data;
}
MemoryStream::MemoryStream(void * data, size_t dataSize, MEMORY_ACCESS access)
MemoryStream::MemoryStream(void * data, size_t dataSize, uint32 access)
{
_access = access;
_dataCapacity = dataSize;