Revert refactor to `bool[].ToUByteBuffer()` extension too
see37da7b3e1
and30b2433a5
This commit is contained in:
parent
30b2433a50
commit
0a61b2754d
|
@ -209,7 +209,9 @@ namespace BizHawk.Common
|
|||
|
||||
public static byte[] ToUByteBuffer(this bool[] buf)
|
||||
{
|
||||
return MemoryMarshal.Cast<bool, byte>(buf).ToArray();
|
||||
var ret = new byte[buf.Length];
|
||||
for (int i = 0, len = buf.Length; i != len; i++) ret[i] = buf[i] ? (byte) 1 : (byte) 0;
|
||||
return ret;
|
||||
}
|
||||
|
||||
public static byte[] ToUByteBuffer(this double[] buf)
|
||||
|
|
Loading…
Reference in New Issue