This commit is contained in:
Callie LeFave 2018-04-16 16:56:56 -04:00
parent a10d0ec6cc
commit be2085ecfb
No known key found for this signature in database
GPG Key ID: 8493D3582582BD5C
2 changed files with 2 additions and 2 deletions

View File

@ -1043,7 +1043,7 @@ namespace BizHawk.Client.EmuHawk
{
if (control is LuaPictureBox)
{
(control as LuaPictureBox).DrawPolygon(points, line, x, y, background);
(control as LuaPictureBox).DrawPolygon(points, x, y, line, background);
}
}
}

View File

@ -295,7 +295,7 @@ namespace BizHawk.Client.EmuHawk
{
try
{
luaPictureBox.DrawPolygon(points, line, x, y, background);
luaPictureBox.DrawPolygon(points, x, y, line, background);
}
catch (Exception ex)
{