Use float cos and sin functions
This commit is contained in:
parent
bcc42f3a01
commit
ab85e82cc8
|
|
@ -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>)
|
||||
|
|
|
|||
Loading…
Reference in New Issue