diff --git a/tape-rip.lua b/tape-rip.lua index 55f50ba..027d91d 100644 --- a/tape-rip.lua +++ b/tape-rip.lua @@ -79,7 +79,7 @@ while not src.isEnd() do local pos, sz = src.getPosition(), src.getSize() term.setCursorPos(1, y) term.clearLine() - if (i % 10) == 0 then + if (i % 256) == 0 then textProgress(pos / sz, colors.green, colors.gray, "%7.3f%% %8d / %8d", pos * 100 / sz, pos, sz) os.sleep(0.01) end