aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RayRoom/Core/Matrix2x2.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/RayRoom/Core/Matrix2x2.cs b/RayRoom/Core/Matrix2x2.cs
index be4047e..4a5639a 100644
--- a/RayRoom/Core/Matrix2x2.cs
+++ b/RayRoom/Core/Matrix2x2.cs
@@ -33,7 +33,7 @@ namespace AudioTester
public static Matrix2x2 operator*(Matrix2x2 a, Matrix2x2 b)
{
- return new Matrix2x2(a * new Vector2(b.a, b.c), a * new Vector2(b.b, b.d));
+ return new Matrix2x2(b * new Vector2(a.a, a.c), b * new Vector2(a.b, a.d));
}
}
} \ No newline at end of file