Revert changes to ToBoolBuffer

fixes the test, and apparently having non-0/1 bool values is sketchy anyways
This commit is contained in:
Morilli 2024-10-06 17:30:44 +02:00
parent 7db5b22713
commit 30b2433a50
1 changed files with 3 additions and 1 deletions

View File

@ -180,7 +180,9 @@ namespace BizHawk.Common
/// <remarks>Any non-zero element is interpreted as <see langword="true"/>.</remarks>
public static bool[] ToBoolBuffer(this byte[] buf)
{
return MemoryMarshal.Cast<byte, bool>(buf).ToArray();
var ret = new bool[buf.Length];
for (int i = 0, len = buf.Length; i != len; i++) ret[i] = buf[i] != 0;
return ret;
}
public static double[] ToDoubleBuffer(this byte[] buf)