From 5e5f4ad0f3c83898a1dade71802b41e2616709cc Mon Sep 17 00:00:00 2001 From: Narr the Reg <5944268+german77@users.noreply.github.com> Date: Fri, 7 Aug 2026 10:29:18 -0600 Subject: [PATCH] math: Fix Matrix44::setCol compiler error --- include/math/seadMatrix.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/math/seadMatrix.hpp b/include/math/seadMatrix.hpp index 858f1555..fd3dfa07 100644 --- a/include/math/seadMatrix.hpp +++ b/include/math/seadMatrix.hpp @@ -801,7 +801,7 @@ inline void Matrix44::setCol(s32 axis, const Vec4& v) template inline void Matrix44::setRow(s32 row, const Vec4& v) { - Matrix44CalcCommon::setRow(*this, row, v); + Matrix44CalcCommon::setRow(*this, v, row); } template