Updated to reflect changes from BinaryReader.cs

This commit is contained in:
Max G 2019-02-27 00:40:11 -06:00 committed by GitHub
parent d8faa0d842
commit 8d80fb72f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -423,7 +423,7 @@ namespace RobloxFiles.BinaryFormat.Chunks
break;
case PropertyType.Int64:
long[] int64s = Reader.ReadInterlaced(instCount, (buffer, start) =>
long[] int64s = Reader.ReadInterleaved(instCount, (buffer, start) =>
{
long result = BitConverter.ToInt64(buffer, start);
return (long)((ulong)result >> 1) ^ (-(result & 1));