From 2a3e681e03ae52464e83a30c441d4f0fd388ef5f Mon Sep 17 00:00:00 2001 From: vis2k Date: Sun, 9 Oct 2022 16:47:12 +0200 Subject: [PATCH] comment --- Assets/Mirror/Core/Compression.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Mirror/Core/Compression.cs b/Assets/Mirror/Core/Compression.cs index 3e4b0f611..f28d54497 100644 --- a/Assets/Mirror/Core/Compression.cs +++ b/Assets/Mirror/Core/Compression.cs @@ -195,7 +195,7 @@ public static Quaternion DecompressQuaternion(uint data) // varint compression ////////////////////////////////////////////////// // compress ulong varint. - // same result for int, short and byte. only need one function. + // same result for ulong, uint, ushort and byte. only need one function. // NOT an extension. otherwise weaver might accidentally use it. public static void CompressVarUInt(NetworkWriter writer, ulong value) {