From 720b6562f0f09610543b5713281b708e1167c6ba Mon Sep 17 00:00:00 2001 From: Vaxry Date: Tue, 24 Sep 2024 18:14:53 +0100 Subject: [PATCH] oopes --- src/math/Mat3x3.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/math/Mat3x3.cpp b/src/math/Mat3x3.cpp index f1b2bc8..7806c41 100644 --- a/src/math/Mat3x3.cpp +++ b/src/math/Mat3x3.cpp @@ -46,8 +46,8 @@ Mat3x3 Mat3x3::outputProjection(const Vector2D& size, eTransform transform) { // Rotation + reflection mat.matrix[0] = x * t.matrix[0]; mat.matrix[1] = x * t.matrix[1]; - mat.matrix[3] = y * -t.matrix[3]; - mat.matrix[4] = y * -t.matrix[4]; + mat.matrix[3] = y * t.matrix[3]; + mat.matrix[4] = y * t.matrix[4]; // Translation mat.matrix[2] = -copysign(1.0f, mat.matrix[0] + mat.matrix[1]);