mathlib: use tgmath in SinCos

This commit is contained in:
mittorn 2020-02-08 22:38:00 +07:00
parent 303a88730c
commit c8be38e75d
1 changed files with 2 additions and 2 deletions

View File

@ -327,8 +327,8 @@ void SinCos( float radians, float *sine, float *cosine )
fstp dword ptr [eax] fstp dword ptr [eax]
} }
#else #else
*sine = sinf(radians); *sine = sin(radians);
*cosine = cosf(radians); *cosine = cos(radians);
#endif #endif
} }