Fix off by one in drawPixel
This commit is contained in:
parent
8b9473957f
commit
99cf91e6ca
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue