summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authormzxrules <mzxrules@gmail.com>2022-11-07 19:21:51 -0500
committerGitHub <noreply@github.com>2022-11-07 21:21:51 -0300
commit577a4a772b487b68f0c655d5954fdbd26df04e37 (patch)
treea54f80dd7ebb72a402ed026bdc6f06cdfd273d78 /include
parent65cf949bc04f71c93a8f7f3862339e1f1cac7337 (diff)
Fix last two functions in sys_math_atan (#1066)
* Fix extra Atan2 funcs * format * make Math_GetAtan2Tbl private * rename Depr to XY * ./format.sh i loathe thee * namefixer.py changes
Diffstat (limited to 'include')
-rw-r--r--include/functions.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/functions.h b/include/functions.h
index 57166a186..6ce39d892 100644
--- a/include/functions.h
+++ b/include/functions.h
@@ -2702,11 +2702,10 @@ s32 Math3D_YZInSphere(Sphere16* sphere, f32 y, f32 z);
// void func_8017FB1C(UNK_TYPE1 param_1, UNK_TYPE1 param_2, UNK_TYPE1 param_3, UNK_TYPE1 param_4, UNK_TYPE4 param_5, UNK_TYPE4 param_6, UNK_TYPE4 param_7, UNK_TYPE4 param_8, UNK_TYPE4 param_9, UNK_TYPE4 param_10, UNK_TYPE4 param_11);
// void func_8017FD44(void);
-u16 Math_GetAtan2Tbl(f32 y, f32 x);
s16 Math_Atan2S(f32 y, f32 x);
f32 Math_Atan2F(f32 y, f32 x);
-s16 Math_FAtan2F(f32 adjacent, f32 opposite);
-f32 Math_Acot2F(f32 adjacent, f32 opposite);
+s16 Math_Atan2S_XY(f32 x, f32 y);
+f32 Math_Atan2F_XY(f32 x, f32 y);
u64* SysUcode_GetUCodeBoot(void);
size_t SysUcode_GetUCodeBootSize(void);