Fix bug with filled circles

checking x doesn't make sense here.
This commit is contained in:
gamax92 2017-09-09 20:25:40 -06:00
parent d3563cd662
commit 99e8958bd8
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ end
local function _plot4points(lines, cx, cy, x, y)
_horizontal_line(lines, cx-x, cy+y, cx+x)
if x~=0 and y~=0 then
if y~=0 then
_horizontal_line(lines, cx-x, cy-y, cx+x)
end
end