Fixed byte count reported by BitWriter
This commit is contained in:
parent
3624ec4809
commit
020e60aedc
@ -344,6 +344,7 @@ namespace MLAPI.NetworkingManagerComponents.Binary
|
|||||||
foreach (var element in t as Array)
|
foreach (var element in t as Array)
|
||||||
count += GetBitCount(element);
|
count += GetBitCount(element);
|
||||||
}
|
}
|
||||||
|
else if (type == typeof(Partial)) return (byte)Partial.count_info.GetValue(t);
|
||||||
else if (IsSupportedType(type))
|
else if (IsSupportedType(type))
|
||||||
{
|
{
|
||||||
long ba = t is bool ? 1 : BytesToRead(t)*8;
|
long ba = t is bool ? 1 : BytesToRead(t)*8;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user