Fix off by one for drawLine

This commit is contained in:
CasualPokePlayer 2024-05-25 13:04:56 -07:00
parent c85ab6cbe6
commit 8b9473957f
1 changed files with 1 additions and 1 deletions

View File

@ -450,7 +450,7 @@ namespace BizHawk.Bizware.Graphics
{
_imGuiDrawList.AddLine(
p1: new(x1, y1),
p2: new(x2, y2),
p2: new(x2 + 0.5f, y2 + 0.5f),
col: (uint)color.ToArgb(),
thickness: RenderThickness);
}