Update Pseudocode.cs

This commit is contained in:
LDj3SNuD 2018-07-30 02:33:54 +02:00 committed by GitHub
parent 30820146b8
commit a03803d43a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1193,9 +1193,9 @@ namespace Ryujinx.Tests.Cpu.Tester
result = BigInteger.Pow(2, N) - 1;
saturated = true;
}
else if (i < 0)
else if (i < (BigInteger)0)
{
result = 0;
result = (BigInteger)0;
saturated = true;
}
else