From 30b2433a5001d85dde825eda2084cfb686ea77ed Mon Sep 17 00:00:00 2001 From: Morilli <35152647+Morilli@users.noreply.github.com> Date: Sun, 6 Oct 2024 17:30:44 +0200 Subject: [PATCH] Revert changes to ToBoolBuffer fixes the test, and apparently having non-0/1 bool values is sketchy anyways --- src/BizHawk.Common/Util.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/BizHawk.Common/Util.cs b/src/BizHawk.Common/Util.cs index 4223a0a5ef..30a1887fdc 100644 --- a/src/BizHawk.Common/Util.cs +++ b/src/BizHawk.Common/Util.cs @@ -180,7 +180,9 @@ namespace BizHawk.Common /// Any non-zero element is interpreted as . public static bool[] ToBoolBuffer(this byte[] buf) { - return MemoryMarshal.Cast(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)