Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/math/seadMatrix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ inline void Matrix44<T>::setCol(s32 axis, const Vec4& v)
template <typename T>
inline void Matrix44<T>::setRow(s32 row, const Vec4& v)
{
Matrix44CalcCommon<T>::setRow(*this, row, v);
Matrix44CalcCommon<T>::setRow(*this, v, row);
}

template <typename T>
Expand Down
Loading