diff --git a/inc/system/system.asciiart.lua b/inc/system/system.asciiart.lua index 5ce940f..242d987 100644 --- a/inc/system/system.asciiart.lua +++ b/inc/system/system.asciiart.lua @@ -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