Update Pseudocode.cs
This commit is contained in:
parent
30820146b8
commit
a03803d43a
1 changed files with 2 additions and 2 deletions
|
@ -1193,9 +1193,9 @@ namespace Ryujinx.Tests.Cpu.Tester
|
||||||
result = BigInteger.Pow(2, N) - 1;
|
result = BigInteger.Pow(2, N) - 1;
|
||||||
saturated = true;
|
saturated = true;
|
||||||
}
|
}
|
||||||
else if (i < 0)
|
else if (i < (BigInteger)0)
|
||||||
{
|
{
|
||||||
result = 0;
|
result = (BigInteger)0;
|
||||||
saturated = true;
|
saturated = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue