ZoneLoading: Simulate the vanilla edge case that the chunk size is in the end of the loadbuffer and cannot quite fit into it so the space is padded and the chunk size is loaded from the beginning of the buffer

This commit is contained in:
Jan
2019-12-24 17:21:58 +01:00
parent 31192e8372
commit d224eb8ce5
7 changed files with 78 additions and 22 deletions

View File

@ -8,4 +8,9 @@ LoadingFileStream::LoadingFileStream(FileAPI::File* file)
size_t LoadingFileStream::Load(void* buffer, const size_t length)
{
return m_file->Read(buffer, 1, length);
}
int64_t LoadingFileStream::Pos()
{
return m_file->Pos();
}