Remove extra whitespace before EOL

This commit is contained in:
2025-06-29 22:15:21 +03:00
parent f82f87cc41
commit d527bd4686
2 changed files with 3 additions and 3 deletions

View File

@@ -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]);