From 8d80fb72f7a423a248fcae2abe868b21754c368e Mon Sep 17 00:00:00 2001 From: Max G Date: Wed, 27 Feb 2019 00:40:11 -0600 Subject: [PATCH] Updated to reflect changes from BinaryReader.cs --- BinaryFormat/ChunkTypes/PROP.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BinaryFormat/ChunkTypes/PROP.cs b/BinaryFormat/ChunkTypes/PROP.cs index 3439b1e..583ca97 100644 --- a/BinaryFormat/ChunkTypes/PROP.cs +++ b/BinaryFormat/ChunkTypes/PROP.cs @@ -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));