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

View File

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