Fix off by one in drawPixel
This commit is contained in:
parent
8b9473957f
commit
99cf91e6ca
|
@ -342,7 +342,7 @@ namespace BizHawk.Client.Common
|
|||
try
|
||||
{
|
||||
var r = Get2DRenderer(surfaceID);
|
||||
r.DrawLine(color ?? _defaultForeground, x, y, x + 1, y);
|
||||
r.DrawLine(color ?? _defaultForeground, x, y, x, y);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue