From 766da10a1de5d17816f8033f2ec926110536f5cf Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sat, 25 May 2024 13:36:15 -0700 Subject: [PATCH] Fix another off by one for drawLine --- .../Renderers/ImGui2DRenderer.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/BizHawk.Bizware.Graphics/Renderers/ImGui2DRenderer.cs b/src/BizHawk.Bizware.Graphics/Renderers/ImGui2DRenderer.cs index c5e27be29a..9ffa8d6378 100644 --- a/src/BizHawk.Bizware.Graphics/Renderers/ImGui2DRenderer.cs +++ b/src/BizHawk.Bizware.Graphics/Renderers/ImGui2DRenderer.cs @@ -448,6 +448,16 @@ namespace BizHawk.Bizware.Graphics public void DrawLine(Color color, int x1, int y1, int x2, int y2) { + if (x1 > x2) + { + (x2, x1) = (x1, x2); + } + + if (y1 > y2) + { + (y2, y1) = (y1, y2); + } + _imGuiDrawList.AddLine( p1: new(x1, y1), p2: new(x2, y2 + 0.5f),