mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Another vcmp condition code
This commit is contained in:
parent
3e207a1490
commit
3f730548b1
1 changed files with 1 additions and 0 deletions
|
@ -1043,6 +1043,7 @@ namespace MIPSInt
|
|||
int c;
|
||||
switch (cond)
|
||||
{
|
||||
case VC_EQ: c = s[i] == t[i]; break;
|
||||
case VC_EZ: c = s[i] == 0.0f || s[i] == -0.0f; break;
|
||||
case VC_LT: c = s[i] < t[i]; break;
|
||||
case VC_LE: c = s[i] <= t[i]; break;
|
||||
|
|
Loading…
Add table
Reference in a new issue