fix drawLine properly

This commit is contained in:
CasualPokePlayer 2024-05-25 13:16:52 -07:00
parent 99cf91e6ca
commit 51dac42195
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 + 0.5f, y2 + 0.5f),
p2: new(x2, y2 + 0.5f),
col: (uint)color.ToArgb(),
thickness: RenderThickness);
}