Revert refactor to `bool[].ToUByteBuffer()` extension too

see 37da7b3e1 and 30b2433a5
This commit is contained in:
YoshiRulz 2024-10-07 04:19:32 +10:00
parent 30b2433a50
commit 0a61b2754d
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 3 additions and 1 deletions

View File

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