1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-01-15 11:45:42 +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
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

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