Use float cos and sin functions

This commit is contained in:
Anonymous Maarten 2022-11-08 20:17:43 +01:00
parent bcc42f3a01
commit ab85e82cc8
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ float tandeg(float pAngle) {
LOG_TRACE("(%f)", pAngle);
pAngle = DEG_TO_RAD(pAngle);
return sin(pAngle) / cos(pAngle);
return sinf(pAngle) / cosf(pAngle);
}
// IDA: tU32 __usercall GetFileLength@<EAX>(FILE *pF@<EAX>)