made the playing function print the song name :3

This commit is contained in:
Lux Aliaga 2021-05-06 00:57:47 -04:00
parent 2fd399c4e2
commit 0595761566
1 changed files with 3 additions and 0 deletions

View File

@ -21,12 +21,15 @@ end
function playDisc()
disk.playAudio(drive)
print(disk.getAudioTitle(drive))
end
function ejectDisc()
disk.eject()
end
function stopDisc()
disk.stopAudio()
end
if disk.isPresent(drive) and disk.hasAudio(drive) then