Sets whether the Source should loop.
Source:setLooping( loop )
boolean loop
Nothing.
function love.load() music = love.audio.newSource("music_loop.wav") music:setLooping(true) music:play() -- Music will now play forever, until stopped or paused. end