libsdl-org / SDL_mixer

An audio mixer that supports various file formats for Simple Directmedia Layer.
zlib License
433 stars 146 forks source link

Don't wait for the music to fade out in Mix_FreeMusic if it is inactive #405

Closed n1000 closed 2 years ago

n1000 commented 2 years ago

Avoid a infinite loop / hang if the user's program has the music paused when trying to free it. If the music isn't active, it will never finish fading out.

sezero commented 2 years ago

Sounds reasonable to me. @slouken?

slouken commented 2 years ago

Yep, looks good to me, thanks!