Core: Fix vrot cos(2) typo.

This commit is contained in:
Unknown W. Brackets 2021-04-25 19:26:16 -07:00
parent f818e514f2
commit a84df2536a

View File

@ -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;
}