From bbede800382b22129ad523f728bc2b8c086b4f46 Mon Sep 17 00:00:00 2001 From: hkc Date: Fri, 20 Oct 2023 03:05:11 +0300 Subject: [PATCH] Be more demanding --- mess/tmpc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mess/tmpc.lua b/mess/tmpc.lua index 0853af2..1f597ff 100644 --- a/mess/tmpc.lua +++ b/mess/tmpc.lua @@ -31,11 +31,11 @@ settings.define("mplayer.colors.status", { local tw, th = term.getSize() os.queueEvent("dummy") -while tw < 20 or th < 10 do +while tw < 25 or th < 10 do local ev = { os.pullEvent() } term.clear() term.setCursorPos(1, 1) - printError("Too small: " .. tw .. "x" .. th .. " < 20x10") + printError("Too small: " .. tw .. "x" .. th .. " < 25x10") printError("Q to exit") printError("Y to ignore")