diff options
| -rw-r--r-- | radio.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,6 +11,6 @@ local channel_format = string.rep("b",48000) while true do local _,_,data = os.pullEvent"radio_message" assert(#data == 48000,"weird format") - speaker.playAudio(string.unpack(channel_format,data)) + speaker.playAudio({string.unpack(channel_format,data)}) end |
