From 32e80bdd9a3ec79973fc689225cf73880e310887 Mon Sep 17 00:00:00 2001 From: Max G Date: Sun, 31 Mar 2019 02:07:15 -0500 Subject: [PATCH] Color3 tables should use PascalCase --- BinaryFormat/ChunkTypes/PROP.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/BinaryFormat/ChunkTypes/PROP.cs b/BinaryFormat/ChunkTypes/PROP.cs index 43d794c..b6bc8c9 100644 --- a/BinaryFormat/ChunkTypes/PROP.cs +++ b/BinaryFormat/ChunkTypes/PROP.cs @@ -170,15 +170,15 @@ namespace RobloxFiles.BinaryFormat.Chunks break; case PropertyType.Color3: - float[] color3_R = readFloats(), - color3_G = readFloats(), - color3_B = readFloats(); + float[] Color3_R = readFloats(), + Color3_G = readFloats(), + Color3_B = readFloats(); loadProperties(i => { - float r = color3_R[i], - g = color3_G[i], - b = color3_B[i]; + float r = Color3_R[i], + g = Color3_G[i], + b = Color3_B[i]; return new Color3(r, g, b); });