BLUXCSIIXRN4DVOAD2AECWKGVJ6QXHJG6CZJCZ7QBROSERSABCGQC
2CQ7FSHGSODNHID5N6S3G26NS54HWMXPO4OEQKJXTHJSGK7DXPCQC
draw_cell = function(n, x,y)
draw_cell = function(n, x,y, draw_cursor)
if draw_cursor then if math.floor(Cursor_time)%2 == 0 then -- blink App.color(Cursor_color) love.graphics.rectangle('fill', x+px+w, y+15, 3, Square_side-20) App.color{r=0, g=0, b=0} end end
if draw_cursor then
if math.floor(Cursor_time)%2 == 0 then -- blink
App.color(Cursor_color)
love.graphics.rectangle('fill', x+px+w, y+15, 3, Square_side-20)
App.color{r=0, g=0, b=0}
end
draw_cell(g.data[y][x], x1+(x-1)*Square_side, y1+(y-1)*Square_side)
draw_cell(g.data[y][x], x1+(x-1)*Square_side, y1+(y-1)*Square_side, x == Cursor[1] and y == Cursor[2])
draw_cell(g.data[y][x], x1+(x-1)*Square_side, y1+(y-1)*Square_side,
x == Cursor[1] and y == Cursor[2])