Remove the default source type (resolves #1082)

--HG--
branch : minor
This commit is contained in:
Bart van Strien
2016-03-08 11:44:36 +01:00
parent 34b6aa608b
commit dc7b1fb049
2 changed files with 2 additions and 2 deletions
@@ -359,7 +359,7 @@ function love.graphics.newVideo(file, loadaudio)
local source, success
if loadaudio ~= false then
success, source = pcall(love.audio.newSource, video:getStream():getFilename())
success, source = pcall(love.audio.newSource, video:getStream():getFilename(), "stream")
end
if success then
video:setSource(source)