From 99cf91e6ca9b91b792b7e8c2e8e40a827e0705b5 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Sat, 25 May 2024 13:08:46 -0700 Subject: [PATCH] Fix off by one in drawPixel --- src/BizHawk.Client.Common/Api/Classes/GuiApi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BizHawk.Client.Common/Api/Classes/GuiApi.cs b/src/BizHawk.Client.Common/Api/Classes/GuiApi.cs index bfeb84d5ac..8de444c5ba 100644 --- a/src/BizHawk.Client.Common/Api/Classes/GuiApi.cs +++ b/src/BizHawk.Client.Common/Api/Classes/GuiApi.cs @@ -342,7 +342,7 @@ namespace BizHawk.Client.Common try { var r = Get2DRenderer(surfaceID); - r.DrawLine(color ?? _defaultForeground, x, y, x + 1, y); + r.DrawLine(color ?? _defaultForeground, x, y, x, y); } catch (Exception) {