From fbb8d8295b2415899a21cc5818b5cbcdcc3acc95 Mon Sep 17 00:00:00 2001 From: Minchae Kim <100426562+lDMDiamondl@users.noreply.github.com> Date: Tue, 21 Jul 2026 16:44:25 +0900 Subject: [PATCH] Fix DeathGraphs misalignment on resolutions higher than 1920x1080 --- Utility/DrawHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utility/DrawHelper.cs b/Utility/DrawHelper.cs index 9134747..668b81c 100644 --- a/Utility/DrawHelper.cs +++ b/Utility/DrawHelper.cs @@ -54,7 +54,7 @@ public static void DrawTrapezoid(Vector2 start, float widthTop, float widthBotto // $"\n{matrix}" + // $"\nEngine.ScreenMatrix.Translation: {m.Translation}"); - DrawVertices(Matrix.Identity, vertices); + DrawVertices(m.M11 > 1.0001f ? Engine.ScreenMatrix : Matrix.Identity, vertices); } public static void DrawVertices(Matrix mat, VertexPositionColor[] vertices) {