Decompile MapManager::GetCourseMinX

This commit is contained in:
SammygoodTunes
2025-01-11 18:31:37 +01:00
parent 2c015c9774
commit 61f866af93
4 changed files with 11 additions and 2 deletions
+1
View File
@@ -1,5 +1,6 @@
build/
.vscode/
venv/
ph_*/
*.nds
*bios.bin
+4
View File
@@ -41,7 +41,11 @@ class Course : public SysObject {
/* 08c */ s32 mScreenMapOffsetY;
/* 090 */ unk32 mUnk_090;
/* 094 */ unk32 mUnk_094;
public:
/* 098 */ AABB mBounds;
private:
/* 0b0 */ s8 mNumMaps;
/* 0b1 */ unk8 mUnk_0b1;
/* 0b2 */ unk8 mUnk_0b2;
+1 -1
View File
@@ -102,7 +102,7 @@ public:
unk8 Get_MapData_Unk2a();
static unk8 func_ov00_02083374();
static unk8 func_ov00_02083384();
unk8 GetCourseMinX();
q20 GetCourseMinX();
unk8 GetCourseMinZ();
unk8 GetCourseMaxX();
unk8 GetCourseMaxZ();
+5 -1
View File
@@ -62,7 +62,11 @@ unk8 MapManager::Get_MapData_Unk28() {}
unk8 MapManager::Get_MapData_Unk2a() {}
unk8 MapManager::func_ov00_02083374() {}
unk8 MapManager::func_ov00_02083384() {}
unk8 MapManager::GetCourseMinX() {}
ARM q20 MapManager::GetCourseMinX() {
return (this->mCourse->mBounds).min.x;
}
unk8 MapManager::GetCourseMinZ() {}
unk8 MapManager::GetCourseMaxX() {}
unk8 MapManager::GetCourseMaxZ() {}