src1 = love.audio.newSource("har'money.mp3")
src1:setVolume(0.9)
love.audio.play(src1)
numSources = love.audio.getNumSources()
if numSources == 0 then
love.audio.play(src1)
end
Also, having ' in a filename might lead to future tears. That's probably just the web developer in me speaking, but if you can avoid special characters in filenames, do.