don't show duration for now....

This commit is contained in:
Casey 2023-10-17 15:34:34 +03:00
parent d40c689d66
commit a3c25f1442
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
1 changed files with 1 additions and 1 deletions

View File

@ -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