From 32caf7810edd3a4a163ca647cc046a6b3a2ea74a Mon Sep 17 00:00:00 2001 From: hkc Date: Fri, 20 Oct 2023 04:14:58 +0300 Subject: [PATCH] It's `drive`, not `tape` --- mess/tmpc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mess/tmpc.lua b/mess/tmpc.lua index a2b1f9f..1ca726a 100644 --- a/mess/tmpc.lua +++ b/mess/tmpc.lua @@ -510,13 +510,13 @@ function() if offset > drive.getSize() or length > drive.getSize() then mplayer.songs = { { - title = tape.getLabel(), + title = drive.getLabel(), offset = 0, - length = tape.getSize() - 10 + length = drive.getSize() - 10 }, { title = "[ !!! ] It's just a regular tape", - offset = tape.getSize() - 10, + offset = drive.getSize() - 10, length = 10 } }