Update Integer.cs

This commit is contained in:
LDj3SNuD 2018-08-15 02:25:08 +02:00 committed by GitHub
parent 22e96c6711
commit 0c49830c75
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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