mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-21 22:33:08 +01:00
Removed reliance on powf CRT function.
This commit is contained in:
@@ -54,7 +54,7 @@ namespace bx
|
||||
|
||||
float pow(float _a, float _b)
|
||||
{
|
||||
return ::powf(_a, _b);
|
||||
return exp(_b * log(_a) );
|
||||
}
|
||||
|
||||
float log(float _a)
|
||||
|
||||
Reference in New Issue
Block a user