aboutsummaryrefslogtreecommitdiff
path: root/src/Math/Mat3f.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Math/Mat3f.c')
-rw-r--r--src/Math/Mat3f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Math/Mat3f.c b/src/Math/Mat3f.c
index 33cda05..1bc1b2c 100644
--- a/src/Math/Mat3f.c
+++ b/src/Math/Mat3f.c
@@ -48,7 +48,7 @@ void BH_Mat3fMul(const float a[9],
{
float tmp[9], row[3];
- SET_ROW(row, b[0]); BH_Vec3fMul(&a[0], row, &tmp[0]);
+ SET_ROW(row, b[0]); BH_Vec3fMul(&a[0], row, &tmp[0]);
SET_ROW(row, b[1]); BH_Vec3fMulAdd(&a[3], row, &tmp[0], &tmp[0]);
SET_ROW(row, b[2]); BH_Vec3fMulAdd(&a[6], row, &tmp[0], &tmp[0]);