mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 16:48:59 +00:00
fabs -> fabsf
This commit is contained in:
parent
4da733145e
commit
fc1bfcbc21
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ inline float Acos(float x) { return acosf(x); }
|
|||
inline float Tan(float x) { return tanf(x); }
|
||||
inline float Atan(float x) { return atanf(x); }
|
||||
inline float Atan2(float y, float x) { return atan2f(y, x); }
|
||||
inline float Abs(float x) { return fabs(x); }
|
||||
inline float Abs(float x) { return fabsf(x); }
|
||||
inline float Sqrt(float x) { return sqrtf(x); }
|
||||
inline float RecipSqrt(float x, float y) { return x/Sqrt(y); }
|
||||
inline float RecipSqrt(float x) { return RecipSqrt(1.0f, x); }
|
||||
|
|
Loading…
Reference in a new issue