From 0a61b2754df1007c24d388345b8625d886999597 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Mon, 7 Oct 2024 04:19:32 +1000 Subject: [PATCH] Revert refactor to `bool[].ToUByteBuffer()` extension too see 37da7b3e1 and 30b2433a5 --- 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 30a1887fdc..d3e28c47b3 100644 --- a/src/BizHawk.Common/Util.cs +++ b/src/BizHawk.Common/Util.cs @@ -209,7 +209,9 @@ namespace BizHawk.Common public static byte[] ToUByteBuffer(this bool[] buf) { - return MemoryMarshal.Cast(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)