mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-27 18:30:56 +00:00
Fix "vasin" instruction.
This commit is contained in:
parent
2351efc584
commit
1c05ca355d
@ -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 @@
|
||||
Subproject commit f5ba2a00a0fff7df36e2488cc29a756a37e1e28b
|
||||
Subproject commit 8149a0b9afda4757e01f511686f49b247cadf793
|
Loading…
Reference in New Issue
Block a user