From 0c49830c7599bfc191bfbb0cbee62f62a36f3c0d Mon Sep 17 00:00:00 2001 From: LDj3SNuD <35856442+LDj3SNuD@users.noreply.github.com> Date: Wed, 15 Aug 2018 02:25:08 +0200 Subject: [PATCH] Update Integer.cs --- Ryujinx.Tests/Cpu/Tester/Types/Integer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Tests/Cpu/Tester/Types/Integer.cs b/Ryujinx.Tests/Cpu/Tester/Types/Integer.cs index c72f3e2525..49ba260c05 100644 --- a/Ryujinx.Tests/Cpu/Tester/Types/Integer.cs +++ b/Ryujinx.Tests/Cpu/Tester/Types/Integer.cs @@ -14,7 +14,7 @@ namespace Ryujinx.Tests.Cpu.Tester.Types throw new IndexOutOfRangeException(); } - Bits src = new Bits(x.ToByteArray()); + Bits src = new Bits(x); bool[] dst = new bool[highIndex - lowIndex + 1]; for (int i = lowIndex, n = 0; i <= highIndex; i++, n++)