mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-24 08:01:29 +00:00
Core: Fix vrot cos(2) typo.
This commit is contained in:
parent
f818e514f2
commit
a84df2536a
@ -1018,7 +1018,7 @@ void vfpu_sincos(float a, float &s, float &c) {
|
||||
if (negate)
|
||||
val.i ^= 0x80000000;
|
||||
s = val.f;
|
||||
c = 1.0f;
|
||||
c = negate ? -1.0f : 1.0f;
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user