diff options
| author | TakaRikka <38417346+TakaRikka@users.noreply.github.com> | 2025-11-30 14:23:42 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-30 15:23:42 -0700 |
| commit | a6e76c0841cae03cae0c0e6ac75c32f979043093 (patch) | |
| tree | 76b5f590c59c6abdf2c80d0a3d5c0ccb31ebd0fe /src/d/d_path.cpp | |
| parent | 434415337d268e405b09f6b72935a7e918e4cfe7 (diff) | |
project cleanup (#2895)
* some wii OS fixes
* remove old dol2asm comments
* remove dol2asm.h
* remove function address comments
* normalize ATTRIBUTE_ALIGN usage
* DECL_WEAK macro
* fix gcc attribute weak macro
* wrap more mwcc specific things in ifdefs
* fixes
* fix revo sdk version flags
* fixes
Diffstat (limited to 'src/d/d_path.cpp')
| -rw-r--r-- | src/d/d_path.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/d/d_path.cpp b/src/d/d_path.cpp index a3ddff6259..bbf549364f 100644 --- a/src/d/d_path.cpp +++ b/src/d/d_path.cpp @@ -8,7 +8,6 @@ #include "d/d_path.h" #include "d/d_com_inf_game.h" -/* 800517B0-800517EC 04C0F0 003C+00 0/0 7/7 63/63 .text dPath_GetPnt__FPC5dPathi */ dPnt* dPath_GetPnt(dPath const* path, int pnt_index) { if (path == NULL || path->m_points == NULL || pnt_index < 0 || pnt_index >= path->m_num) { return NULL; @@ -17,7 +16,6 @@ dPnt* dPath_GetPnt(dPath const* path, int pnt_index) { return &path->m_points[pnt_index]; } -/* 800517EC-80051898 04C12C 00AC+00 1/1 12/12 82/82 .text dPath_GetRoomPath__Fii */ dPath* dPath_GetRoomPath(int path_index, int room_no) { dStage_dPath_c* path; @@ -39,8 +37,6 @@ dPath* dPath_GetRoomPath(int path_index, int room_no) { return &path->m_path[path_index]; } -/* 80051898-8005195C 04C1D8 00C4+00 0/0 1/1 3/3 .text dPath_GetNextRoomPath__FPC5dPathi - */ dPath* dPath_GetNextRoomPath(dPath const* p_path, int room_no) { dStage_dPath_c* path; @@ -67,8 +63,6 @@ dPath* dPath_GetNextRoomPath(dPath const* p_path, int room_no) { return &path->m_path[next_id]; } -/* 8005195C-80051AC0 04C29C 0164+00 0/0 1/1 4/4 .text - * dPath_GetPolyRoomPathVec__FRC13cBgS_PolyInfoP4cXyzPi */ u8 dPath_GetPolyRoomPathVec(cBgS_PolyInfo const& poly, cXyz* p_pathVec, int* param_2) { int roomId = dComIfG_Bgsp().GetRoomId(poly); int roomPathId = dComIfG_Bgsp().GetRoomPathId(poly); |
