1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-09-03 10:57:55 +00:00

Fix some typos in a dfpwm example

This commit is contained in:
Jonathan Coates
2021-12-21 22:25:16 +00:00
parent afd82fbf1f
commit e558b31b2b

View File

@@ -148,9 +148,9 @@ local dfpwm = require "cc.audio.dfpwm"
local speaker = peripheral.find("speaker")
local decoder = dfpwm.make_decoder()
for input in io.lines("data/example.dfpwm", 16 * 1024 * 2) do
for input in io.lines("data/example.dfpwm", 16 * 1024) do
local decoded = decoder(input)
while not speaker.playAudio(output) do
while not speaker.playAudio(decoded) do
os.pullEvent("speaker_audio_empty")
end
end