diff options
| author | SammygoodTunes <sygamerz@gmail.com> | 2025-02-04 16:36:10 +0100 |
|---|---|---|
| committer | SammygoodTunes <sygamerz@gmail.com> | 2025-02-04 16:36:10 +0100 |
| commit | ff2130d2341af1bdf4012fb912608d922457307d (patch) | |
| tree | bee3dfa33f3b735ef204a30e2e0978048da609ce /src/00_Core/Map/MapManager.cpp | |
| parent | 5b3bc3313eb9d424657e6eb888ad741494484d03 (diff) | |
| parent | 3f7197110627adbbe7ff1f69db1f5a15f9b6c598 (diff) | |
Merge PR updates
Diffstat (limited to 'src/00_Core/Map/MapManager.cpp')
| -rw-r--r-- | src/00_Core/Map/MapManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/00_Core/Map/MapManager.cpp b/src/00_Core/Map/MapManager.cpp index c1f70e90..19df9b36 100644 --- a/src/00_Core/Map/MapManager.cpp +++ b/src/00_Core/Map/MapManager.cpp @@ -1294,17 +1294,17 @@ unk8 MapManager::func_ov00_02083fb0(u32 *param_1, MapManager *param_2, Vec3p *pa *param_1 = 0; } -void MapManager::func_ov00_02084024(Vec2b *param_2, AABB *param_3) { +void MapManager::GetTileWorldBounds(Vec2b *tile, AABB *tileBounds) { int iVar1; Vec3p local_20; - this->mMap->GetTileBounds(param_2, param_3); + this->mMap->GetTileBounds(tile, tileBounds); iVar1 = this->GetMapCenterZ(); local_20.x = this->GetMapCenterX(); local_20.y = 0; local_20.z = iVar1; - Vec3p_Add(¶m_3->min, &local_20, ¶m_3->min); - Vec3p_Add(¶m_3->max, &local_20, ¶m_3->max); + Vec3p_Add(&tileBounds->min, &local_20, &tileBounds->min); + Vec3p_Add(&tileBounds->max, &local_20, &tileBounds->max); } unk32 MapManager::MapData_vfunc_54(unk8 *param_1) { // what type is this param? |
