lovebrew / lovepotion

LÖVE for Nintendo Homebrew
https://lovebrew.org
Other
574 stars 45 forks source link

[Bug]: can't stop the music on 3ds (console hangs) #240

Closed christphe closed 3 months ago

christphe commented 3 months ago

Software Version

3.0.1

What Happened?

When calling stop on a source it hangs the console

What was Expected?

It should stop the music

Code to Reproduce

love.load = function()
    local music = love.audio.newSource("assets/sound.ogg", "stream")
    music:play()
    music:stop();
    love.event.quit(0)
end

Console

Nintendo 3DS

Firmware Version(s)

11.17.0-50E

Custom Firmware Version

13.2.1

Execution Method

Homebrew Menu

Code of Conduct

TurtleP commented 3 months ago

This was already addressed in a commit a while back. You can get a newer binary from the GitHub Actions where it’s fixed. See: https://github.com/lovebrew/lovepotion/issues/237.

christphe commented 3 months ago

Wow and it wasn't even hard to find, sorry about that.