From a3c25f1442d26c28d9dc5b6b3420a06d07420f5d Mon Sep 17 00:00:00 2001 From: hkc Date: Tue, 17 Oct 2023 15:34:34 +0300 Subject: [PATCH] don't show duration for now.... --- tape-playlist.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tape-playlist.lua b/tape-playlist.lua index 596c926..067d5f6 100644 --- a/tape-playlist.lua +++ b/tape-playlist.lua @@ -38,7 +38,7 @@ function() while running do for i, track in ipairs(table_of_contents) do term.setCursorPos(1, i) - term.write(string.format("%s (%s)", track.title, bytes2time(track.length))) + term.write(string.format("%s", track.title)) end os.sleep(0.1) end