Match 3 libultra funcs + some texture init labels (#383)

* Fix warnings

* Update src/thread0_epc.c

Co-authored-by: Ryan Myers <ryan.p.myers@gmail.com>

* identify some texture init stuff

* match _Litob

* match cosf

* match sinf

* formatting

* Update math.h

* Delete sinf.s

* quick fix

---------

Co-authored-by: Ryan Myers <ryan.p.myers@gmail.com>
This commit is contained in:
Fazana
2023-04-16 14:50:14 +01:00
committed by GitHub
co-authored by Ryan Myers
parent 78c99d27fa
commit c41bbf9131
13 changed files with 237 additions and 462 deletions
+3 -6
View File
@@ -3,11 +3,8 @@
#define M_PI 3.14159265358979323846
float sinf(float); //official name: fsin
double sin(double);
float cosf(float);
double cos(double);
float sqrtf(float);
f32 sinf(f32 x); //official name: fsin
f32 cosf(f32 x);
f32 sqrtf(f32 x);
#endif