asciiart update

This commit is contained in:
2026-03-22 18:56:16 +01:00
parent 197cb9403b
commit 93df710d14

View File

@@ -44,7 +44,7 @@ function AsciiArt.draw(text, options)
for j = 1, #line do
local char = line:sub(j, j)
if char == "#" then
rect(x_offset + (j - 1) * char_w, current_y, char_w - 1, char_h - 1, color)
rect(x_offset + (j - 1) * char_w, current_y, char_w, char_h, color)
end
end
current_y = current_y + char_h + line_gap