fixed funcs declaration

This commit is contained in:
h4570
2020-12-13 00:39:32 +01:00
parent 4a1bca12aa
commit ea6d5215d1
+2 -2
View File
@@ -100,7 +100,7 @@ void manyVec3ToNative(VECTOR *o_result, Vector3 *t_vec, int t_amount, float t_fo
vec3ToNative(o_result[i], t_vec[i], t_fourthVal); vec3ToNative(o_result[i], t_vec[i], t_fourthVal);
} }
static float asin(float x) float Math::asin(float x)
{ {
float r; float r;
asm volatile( asm volatile(
@@ -159,7 +159,7 @@ static float asin(float x)
return r; return r;
} }
static float mod(float x, float y) float Math::mod(float x, float y)
{ {
/* /*
* Portable fmod(x,y) implementation for systems * Portable fmod(x,y) implementation for systems