From d8faa0d842371adb256d2170c36a6350e88d8a1e Mon Sep 17 00:00:00 2001 From: Max G Date: Wed, 27 Feb 2019 00:37:37 -0600 Subject: [PATCH] Revert. --- 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 583ca97..3439b1e 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.ReadInterleaved(instCount, (buffer, start) => + long[] int64s = Reader.ReadInterlaced(instCount, (buffer, start) => { long result = BitConverter.ToInt64(buffer, start); return (long)((ulong)result >> 1) ^ (-(result & 1));