f_op_actor_mng split & started decomp (#112)

* fop-actor-mng

* rodata

* more actor mng progress

* actor mng progress

* format

* cleanup

* fix Mtx function signatures

* PR suggestion

Co-authored-by: Pheenoh <pheenoh@gmail.com>
This commit is contained in:
lepelog
2021-02-12 19:47:46 -05:00
committed by GitHub
co-authored by Pheenoh
parent 103e9a3865
commit aff4c171fc
295 changed files with 6350 additions and 5712 deletions
+2 -2
View File
@@ -31,10 +31,10 @@ inline float fabsf(float f) {
return (float)fabsd(f);
}
extern float __fsqrte(float);
// extern float __frsqrte(float);
inline double sqrt(float f) {
return __fsqrte(f);
return __frsqrte(f);
}
#include "dolphin/types.h"