From 62e0778390f838cdb92f16b3582e2d76299ae8a5 Mon Sep 17 00:00:00 2001 From: elijah-thomas774 Date: Sun, 12 May 2024 16:04:01 -0400 Subject: fixed up typedef for u32 and s32 from mistake long ago --- src/egg/math/eggMatrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/egg/math/eggMatrix.cpp') diff --git a/src/egg/math/eggMatrix.cpp b/src/egg/math/eggMatrix.cpp index 794cca7d..68f0049f 100644 --- a/src/egg/math/eggMatrix.cpp +++ b/src/egg/math/eggMatrix.cpp @@ -332,7 +332,7 @@ void Matrix34f::toQuat(Quatf &q) const { q.multScalar(Math::inv(q.length())); } -void Matrix34f::slerpTo(const Matrix34f &m2, Matrix34f &out, f32 t) { +void Matrix34f::slerpTo(const Matrix34f &m2, Matrix34f &out, f32 t) const { Quatf q1, q2, q3; m2.toQuat(q1); toQuat(q2); -- cgit v1.2.3