Fix off by one in drawPixel

This commit is contained in:
CasualPokePlayer 2024-05-25 13:08:46 -07:00
parent 8b9473957f
commit 99cf91e6ca
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ namespace BizHawk.Client.Common
try try
{ {
var r = Get2DRenderer(surfaceID); var r = Get2DRenderer(surfaceID);
r.DrawLine(color ?? _defaultForeground, x, y, x + 1, y); r.DrawLine(color ?? _defaultForeground, x, y, x, y);
} }
catch (Exception) catch (Exception)
{ {