MSL_C cleanup (#238)

* clean up MSL_C files according to prime decomp

* remove asm
This commit is contained in:
TakaRikka
2023-01-02 22:28:46 -07:00
committed by GitHub
parent f6a9947c6c
commit e1114ebcf9
101 changed files with 1310 additions and 1941 deletions
+1 -2
View File
@@ -2,7 +2,6 @@
#define MSL_MATH_H_
#include "MSL_C/MSL_Common/Src/float.h"
#include "dolphin/types.h"
#define M_PI 3.14159265358979323846f
@@ -76,7 +75,7 @@ inline float sqrtf(float mag) {
}
inline float atan2f(float y, float x) {
return (f32)atan2(y, x);
return (float)atan2(y, x);
}
#ifdef __cplusplus