diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-11-25 11:32:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-25 18:32:34 +0200 |
| commit | 2f2f37a7345d889aa1072b10e3a5022ad1bd15f1 (patch) | |
| tree | 5844529921578f759ec79e96769f8d809bc0c350 /include/m_Do | |
| parent | cd3d634133040864768d9cc7364b02ce1f22e99b (diff) | |
Misc fixes (#2860)
* Misc matches
* Remove more old dol2asm stuff
* Remove dCcS::SetMass-related fakematches
No longer necessary with the PCH for some reason.
* Use attention types enum in more places
* Remove more dol2asm stuff
* Clean up matDL_dis.py
Diffstat (limited to 'include/m_Do')
| -rw-r--r-- | include/m_Do/m_Do_lib.h | 2 | ||||
| -rw-r--r-- | include/m_Do/m_Do_mtx.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/m_Do/m_Do_lib.h b/include/m_Do/m_Do_lib.h index b5f8983fce..5465e909d7 100644 --- a/include/m_Do/m_Do_lib.h +++ b/include/m_Do/m_Do_lib.h @@ -38,7 +38,7 @@ struct mDoLib_clipper { }; void mDoLib_project(Vec* src, Vec* dst); -u8 mDoLib_setResTimgObj(ResTIMG const* res, GXTexObj* o_texObj, u32 tlut_name, +u32 mDoLib_setResTimgObj(ResTIMG const* res, GXTexObj* o_texObj, u32 tlut_name, GXTlutObj* o_tlutObj); void mDoLib_pos2camera(Vec* src, Vec* dst); diff --git a/include/m_Do/m_Do_mtx.h b/include/m_Do/m_Do_mtx.h index 739a0e93ae..a2229295a6 100644 --- a/include/m_Do/m_Do_mtx.h +++ b/include/m_Do/m_Do_mtx.h @@ -37,7 +37,7 @@ inline void cMtx_scale(Mtx m, f32 x, f32 y, f32 z) { } inline void mDoMtx_multVec(CMtxP m, const Vec* src, Vec* dst) { - MTXMultVec(m, src, dst); + PSMTXMultVec(m, src, dst); } inline void mDoMtx_multVecArray(Mtx m, const Vec* src, Vec* dst, u32 count) { |
