Name the last two files in src (#429)

* label animation and a few object flags

* models

* name funny spline

* Update menu.c

* better name

* rename unknown_005740.c

* ah its happened again

* fix warnings

* Fix that dumb idiot warning finally

* teag

* rename the last audio file

* Update math_util.c

* update math util to the latest

* small funny format

* quick change

* fix warnings

* Update README.md

* Fix a maths func

* fix nonequiv building

* bro come on
This commit is contained in:
Fazana
2023-10-31 16:39:28 +00:00
committed by GitHub
parent 8019d578c0
commit d8e58622e0
65 changed files with 6344 additions and 6231 deletions
+4 -1
View File
@@ -1461,7 +1461,10 @@ Matrix *get_camera_matrix(void) {
return &gCameraMatrixF;
}
f32 func_80069DC8(f32 x, f32 y, f32 z) {
/**
* Return the screenspace distance to the camera.
*/
f32 get_distance_to_camera(f32 x, f32 y, f32 z) {
f32 ox, oy, oz;
guMtxXFMF(gCameraMatrixF, x, y, z, &ox, &oy, &oz);