From 93df710d1480035fc9c8042b148828d61a777705 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Sun, 22 Mar 2026 18:56:16 +0100 Subject: [PATCH] asciiart update --- inc/system/system.asciiart.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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