diff options
| author | SammygoodTunes <sygamerz@gmail.com> | 2025-01-20 19:39:52 +0100 |
|---|---|---|
| committer | SammygoodTunes <sygamerz@gmail.com> | 2025-01-20 19:39:52 +0100 |
| commit | ecaa34e7e1055b22f6d0352b5710dfbea461ebad (patch) | |
| tree | b39704320c550e7d3f547c61561dcbf765faee6f /include | |
| parent | dacda6b991d00e6966cbae546c67746fbf18b4c3 (diff) | |
Decomp progress 24%
Diffstat (limited to 'include')
| -rw-r--r-- | include/Map/MapManager.hpp | 4 | ||||
| -rw-r--r-- | include/lib/math.h | 3 |
2 files changed, 3 insertions, 4 deletions
diff --git a/include/Map/MapManager.hpp b/include/Map/MapManager.hpp index f67ac7bc..429d41f2 100644 --- a/include/Map/MapManager.hpp +++ b/include/Map/MapManager.hpp @@ -123,7 +123,7 @@ public: unk32 func_ov00_02083588(); unk32 func_ov00_020835a4(); unk32 func_ov00_020835b4(); - unk8 func_ov00_020835c4(s32 param_2, unk32 param_3); + unk8 func_ov00_020835c4(MapManager *param_1, s32 param_2, unk32 param_3); bool func_ov00_020835e4(s32 param_2, unk32 *param_3, unk8 *param_4); unk32 func_ov00_020835f4(s32 param_2); void func_ov00_02083604(s32 param_2); @@ -235,7 +235,7 @@ public: static unk8 func_ov00_020858b0(); s32 func_ov00_02085a34(unk32 param_2, unk32 param_3); unk8 func_ov00_02085c60(unk32 param_2, unk32 param_3, unk32 param_4, unk32 param_5); - unk8 func_ov00_02086044(unk32 param_2, unk32 param_3, unk32 param_4); + unk8 func_ov00_02086044(Vec3p *param_2, Vec3p *param_3, unk32 param_4); bool func_ov00_02086284(s32 *param_2, Vec3p *param_3, Vec3p *param_4, s32 param_5, u16 param_6, Vec3p *param_7, Vec3p *param_8); bool func_ov00_02086a84(s32 *param_2, Vec3p *param_3, Vec3p *param_4, s32 param_5, s32 param_6, unk32 param_7, diff --git a/include/lib/math.h b/include/lib/math.h index b5a64150..28e2fd0b 100644 --- a/include/lib/math.h +++ b/include/lib/math.h @@ -48,8 +48,7 @@ extern "C" void Vec3p_Sub(Vec3p *a, Vec3p *b, Vec3p *out); extern "C" q20 Vec3p_Dot(Vec3p *a, Vec3p *b); extern "C" void Vec3p_Cross(Vec3p *a, Vec3p *b, Vec3p *out); extern "C" q20 Vec3p_Length(Vec3p *a); -// extern "C" bool Vec3p_Normalize(Vec3p *vec); // 0x1fffb4c (this calls Vec3p_Normalize at 0x1ff9d4c) -extern "C" void Vec3p_Normalize(Vec3p *vec, Vec3p *out); // 0x1ff9d4c +extern "C" void Vec3p_Normalize(Vec3p *vec, Vec3p *out); extern "C" void Vec3p_Axpy(q20 a, Vec3p *x, Vec3p *y, Vec3p *out); extern "C" q20 Vec3p_Distance(Vec3p *a, Vec3p *b); extern "C" void Vec3p_Scale(Vec3p *vec, q20 scale); |
