mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Another vcmp condition code
This commit is contained in:
parent
3e207a1490
commit
3f730548b1
@ -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…
Reference in New Issue
Block a user