mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-11 07:03:33 +02:00
Fix "vasin" instruction.
This commit is contained in:
@@ -525,7 +525,7 @@ namespace MIPSInt
|
||||
case 20: d[i] = powf(2.0f, s[i]); break; //vexp2
|
||||
case 21: d[i] = logf(s[i])/log(2.0f); break; //vlog2
|
||||
case 22: d[i] = fabsf(sqrtf(s[i])); break; //vsqrt
|
||||
case 23: d[i] = asinf(s[i] * (float)M_2_PI); break; //vasin
|
||||
case 23: d[i] = asinf(s[i]) / M_PI_2; break; //vasin
|
||||
case 24: d[i] = -1.0f / s[i]; break; // vnrcp
|
||||
case 26: d[i] = -sinf((float)M_PI_2 * s[i]); break; // vnsin
|
||||
case 28: d[i] = 1.0f / powf(2.0, s[i]); break; // vrexp2
|
||||
|
||||
+1
-1
Submodule pspautotests updated: f5ba2a00a0...8149a0b9af
Reference in New Issue
Block a user