diff --git a/source/MonoGame.Extended/Math/Matrix3x2.cs b/source/MonoGame.Extended/Math/Matrix3x2.cs index 3a6d5209..94d997fd 100644 --- a/source/MonoGame.Extended/Math/Matrix3x2.cs +++ b/source/MonoGame.Extended/Math/Matrix3x2.cs @@ -298,7 +298,7 @@ public struct Matrix3x2 : IEquatable public void Decompose(out Vector2 translation, out float rotation, out Vector2 scale) { translation.X = M31; - translation.Y = M31; + translation.Y = M32; rotation = (float)Math.Atan2(M21, M11);