Fixed byte count reported by BitWriter

This commit is contained in:
Albin Corén 2018-04-21 15:34:06 +02:00
parent 3624ec4809
commit 020e60aedc

View File

@ -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;