From cd2ff71b2096369a0f4c773ca7d7fc82a83d0759 Mon Sep 17 00:00:00 2001 From: neru Date: Thu, 8 May 2025 13:02:02 -0300 Subject: [PATCH] fix: wrong log start height --- lua/CC Tweaked/tutel/tutel-host.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/CC Tweaked/tutel/tutel-host.lua b/lua/CC Tweaked/tutel/tutel-host.lua index c8f4232..71c036d 100644 --- a/lua/CC Tweaked/tutel/tutel-host.lua +++ b/lua/CC Tweaked/tutel/tutel-host.lua @@ -396,7 +396,7 @@ function updateScreen() term.setBackgroundColor(colors.black) term.setTextColour(colors.white) - drawLogs(1, 2, w, h - 2) + drawLogs(1, 2, w, h - 1) drawStatusBar(2) drawCommandBar(w, h) end